description
stringlengths
0
8.24k
regex
stringlengths
1
26.3k
text
stringlengths
0
2.47M
title
stringlengths
1
150
created_at
stringlengths
24
24
# match a body pattern alone on a line ^\g<body>$ # we'll use (?<name>...){0} to define the pattern \g<name> # without having to match the pattern at the current position # a body pattern matches (?<body> # a sequence of (?: [^\[\]{}()\n] # non-delimiters | \g<parens> # parenthesized pattern | \g<square_brackets> # bracketed pattern | \g<curly_braces> # braced pattern )* ){0} # a parenthesized pattern matches (?<parens> \( # an open paren \g<body> # a valid body \) # a close paren ){0} # a bracketed pattern matches (?<square_brackets> \[ # an open square bracket \g<body> # a valid body \] # a close square bracket ){0} # a braced pattern matches (?<curly_braces> \{ # an open curly brace \g<body> # a valid body \} # a close curly brace ){0}
matches: a plain string a string containing (matched parens) [matched brackets] and {matched braces} nested (parens (within) parens) nested [parens (within) brackets] ()()[({({[]})[({})]})] non-matches: (unbalanced parens ([balanced but misordered)]
Matching balanced parens, brackets, and braces
2013-09-29T18:23:49.000Z
(?<=\[)[^\[\]]+(?=\])(?#This matches anything DIRECTLY between two square brackets)
abcd[bddb]xyyx abba[mnop]qrst abba[mnop[ibbi]abba]qrts
Between Brackets
2020-12-24T01:24:16.000Z
Will return all matches of text between pipe placeholders, e.g. "This text has |two| placeholders |inside| of it" will return matches for two and inside.
\|(\w+)\|
This is a [#TEST#] of the |regular| expression to get |matches|
Get text within pipe placeholders
2015-08-12T13:31:05.000Z
Regex for Chilean phones (without +)
^((00|0)?56[1-9]{1}[0-9]{1,2}[0-9]{3}[0-9]{2,3})$
Chilean Phones
2023-10-04T09:28:07.000Z
\.promise[\r\n]+[\s]*\.then\(
.promise .then(
find including multiline
2020-03-24T06:13:02.000Z
Site FR, pour trouver la version correcte.
site\.com\/fr
site.com/fr/bla site.com/en/bla
Site FR
2015-09-07T19:02:53.000Z
.*file:\W+(?<Trip>[\d-]+)_.*
1 <PNR>JDU8T3</PNR> in file: 1003-4347-316_201801220319.xml
TravelOnline - Extract TripId from file
2018-02-16T15:29:56.000Z
^( *)[-a-z0-9~!$%^&*_=+}{\'?]+(\.[-a-z0-9~!$%^&*_=+}{\'?]+)*@([a-z0-9_][-a-z0-9_]*(\.[-a-z0-9_]+)*\.(aero|arpa|biz|com|coop|edu|gov|info|int|mil|museum|name|net|org|pro|travel|mobi|[a-z][a-z])|([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}))(:[0-9]{1,5})?( *)(,( *)[-a-z0-9~!$%^&*_=+}{\'?]+(\.[-a-z0-9~!$%^&*_=+}{\'?]+)*@([a-z0-9_][-a-z0-9_]*(\.[-a-z0-9_]+)*\.(aero|arpa|biz|com|coop|edu|gov|info|int|mil|museum|name|net|org|pro|travel|mobi|[a-z][a-z])|([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}))(:[0-9]{1,5})?( *))*$
RegEx for validating array of comma seperated email-ids
2016-08-26T16:35:20.000Z
^(.*)(\/[0-9]+\/[a-z]+\-[a-z]+\/?.*)\/?$
https://localhost/produkter/mun-tander/40/currentprice-asc/activesubstances_paracetamol/freefrom_Parabener/producttypemouthandteeth_Munsk%C3%B6lj/ https://localhost/produkter/mun-tander/40/currentprice-asc https://localhost/produkter/mun-tander/40/currentprice-asc/ https://localhost/produkter/mun-tander/40/currentprice-asc/content/img/ios-icon.png https://localhost/produkter/mun-tander/count-40/sortby-currentprice_asc/filter-activesubstances_paracetamol-freefrom_Parabener-producttypemouthandteeth_Munsk%C3%B6lj/ https://localhost/produkter/mun-tander/count-40/sortby-currentprice_asc/filter-activesubstances_paracetamol/filter-freefrom_Parabener/filter-producttypemouthandteeth_Munsk%C3%B6lj/ https://localhost/produkter/mun-tander/count-40/sortby-currentprice_asc https://localhost/produkter/mun-tander/count-40/sortby-currentprice_asc/ https://localhost/produkter/mun-tander/count-40/sortby-currentprice_asc/content/img/ios-icon.png ^(.*)\/count-([0-9]+)\/sortBy-([a-z]+)_([a-z]+)((\/filter-[^\/]+)+)?\/? ^(.*)(\/[0-9]+\/[a-z]+_[a-z]+\/?.*)\/?$
APH - Product FriendlyUrl
2016-08-17T10:30:32.000Z
<(\S+)>\s*<(\S+)>\s*(?:"(.+)"|<(\S+)>).*.
# started 2015-11-29T18:23:17Z <http://dbpedia.org/resource/Bobcat_Company> <http://dbpedia.org/property/type> <http://dbpedia.org/resource/Subsidiary> . <http://dbpedia.org/resource/Bobcat_Company> <http://dbpedia.org/property/website> <http://www.bobcat.com> . <http://dbpedia.org/resource/Albedo> <http://dbpedia.org/property/colwidth> "30"^^<http://www.w3.org/2001/XMLSchema#integer> . <http://dbpedia.org/resource/Anarchism> <http://dbpedia.org/property/voy> "no"@en . <http://dbpedia.org/resource/Anarchism> <http://dbpedia.org/property/n> "no"@en . <http://dbpedia.org/resource/Anarchism> <http://dbpedia.org/property/v> "no"@en . <http://dbpedia.org/resource/Knight_Transportation> <http://dbpedia.org/property/keyPeople> "Kevin Knight"@en . <http://dbpedia.org/resource/Knight_Transportation> <http://dbpedia.org/property/keyPeople> "Keith Knight"@en . <http://dbpedia.org/resource/Knight_Transportation> <http://dbpedia.org/property/numEmployees> "4400"^^<http://www.w3.org/2001/XMLSchema#integer> . <http://dbpedia.org/resource/Knight_Transportation> <http://dbpedia.org/property/industry> "motor transportation-trucking"@en . <http://dbpedia.org/resource/Knight_Transportation> <http://dbpedia.org/property/products> "truckload shipping"@en .
DBPedia-highest-level-entry
2016-09-06T05:12:14.000Z
(?:<[pP]>)?(?:<strong>)(?:<br \/>)(["!?–\-\/\wÅåÄäÖö;,.\(\)\[\]&\s:+]+)(?:<\/strong>)(["!?–\-\/\wÅåÄäÖö;,.\(\)\[\]&\s:+]+)((?:<br \/>)?)(["!?–\-\/\wÅåÄäÖö;,.\(\)\[\]&\s:+]+)
<strong><A NAME="Bondeupproret"></A>Andersson, Per,</strong> Bondeupproret i Sk&aring;ne 1811 / Per Andersson, Arne Ribnell. – [Ny, ut&ouml;kad uppl.]. – Malm&ouml;, 1996. – 12 s. <p><strong><br />Andersson, Per,</strong> Litteratur om Svedalatrakten. – Malm&ouml;[?], 197-. – 6 bl. <p><strong><br /><A NAME="borgar_slott"></A>Andersson, Per,</strong> Sk&aring;nska borgar, slott och herrg&aring;rdar. – Lund, 1996. – 212 s. <p><strong><br /><A NAME="Skånska_kyrkor"></A>Andersson, Per,</strong> Sk&aring;nska kyrkor, kapell, kloster och andra kyrkliga byggnader. – Malm&ouml;, 1985. – 254 s. <p><strong><br /><A NAME="Att_läsa"></A>Ericsson, Acke,</strong> Att l&auml;sa om Sturup. // SkNK. – 1973, h. 1, s. 37-40. <br />Urval ur Acke Ericssons bibliografi, se nedan. <p><strong><br /><A NAME="Sturup"></A>Ericsson, Acke,</strong> Sturup. – Malm&ouml;, 1973. – 24 bl. <p><strong><br />J&ouml;nsson, Knut,</strong> Anteckningar till en bibliografi &ouml;ver Bara kommun. – Bor&aring;s, 1975. – 76 bl. <p><strong><br />L&ouml;nn&auml;ng, Ragnar</strong>, Handbok f&ouml;r resor till sk&aring;nska slott. - Simrishamn, 2003 – 156 s. : ill. <br />B&ouml;rringekloster, Kl&aring;gerup, Skabersj&ouml;, Torup.
p tags no a
2021-02-05T09:34:38.000Z
9.99.99.9999
^9+((\.9+)+)?$
9 .9 9. 99 .9 9.9.9 99.99. .99.99 99.999.999.99.9 9 9ad.99 .99.99 99. ^9+((\.9+)+)?$
estrutura de contas
2016-02-03T22:09:14.000Z
Featch or Replace Folder tag data. <FOLDER id="any (word)">hello</FOLDER> Result: hello
^\<Folder id="\w+.*">|\<\/Folder\>
<Folder id="helo "> Hello </Folder> <Folder id="rohit (0000)"> Hello </Folder>
rohit-tagsearch
2015-10-16T11:51:13.000Z
(?:\#|\/\/)[^\n\r]*(?<![\?>])
<!--- sdsdsdsdsds ---> <!--- sdsdsdsdsds ---> <!--- sdsdsdsdsds ---> <!--- sdsdsdsdsds ---> /*asdasd asdasd asdasd asdasd asdasd asdasds?sdsd*/ /*echo'<div class="a" id="a">Content for class "a" id "a" Goes Here</div>';*/ //sdsdsdsddsdsd #sdsdsds?sdsd <?php #echo'<div class="a" id="a">Content for class "a" id "a" Goes Here</div>'; ?> ?> <?php //echo'<div class="a" id="a">Content for class "a" id "a" Goes Here</div>'; ?> ?> <?php /*echo'<div class="a" id="a">Content for class "a" id "a" Goes Here</div>';*/ ?> <?php /*?><?php echo'<div class="a" id="a">Content for class "a" id "a" Goes Here</div>'; ?><?php */?>
php comment
2014-03-19T14:46:42.000Z
DOS ASM Label plus Opcode and operators
^([A-Z]+):\s+([A-Z]+)\s*(.*)$
CLRFCB: FCB: EQU 5CH SYSTEM: EQU 5 OPEN: EQU 15 CLOSE: EQU 16 SETDMA: EQU 26 CREATE: EQU 22 DELETE: EQU 19 READ: EQU 20 WRITE: EQU 21 PRNBUF: EQU 9 MOV SP,STACK MOV DX,HEADER MOV CL,9 CALL SYSTEM MOV BX,FCB+12 XOR AL,AL MOV CH,4 CLRFCB: MOV [BX],AL
DOS ASM label+opcode+rest
2015-07-07T09:36:35.000Z
For embeding, replace with //www.youtube.com/embed/$3?list=$2$6
(youtube\.com|youtu\.be|youtube-nocookie\.com)\/(?:embed\/|v\/|watch\?v=|watch\?list=(.*)&v=)?((\w|-){11})(&list=(\w+)&?)?
YouTube VideoID and ListID from URL
2015-03-11T17:27:45.000Z
alt="(.+?)"
<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" class="no_js"> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta name="format-detection" content="telephone=no" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="MobileOptimized" content="176" /> <meta name="HandheldFriendly" content="True" /> <base id="base"> <meta name="robots" content="noindex,nofollow" /> <title>Павел Дуров</title> <script> document.querySelector('html').setAttribute('class', 'js_yes'); </script> <script type="text/javascript"> <!-- (function(k,a,d,e,f){function l(){var c=function(){var b=!1;try{b=new XMLHttpRequest}catch(a){try{b=new ActiveXObject("Msxml2.XMLHTTP")}catch(d){try{b=new ActiveXObject("Microsoft.XMLHTTP")}catch(c){b=!1}}}return b?e:f}(),g=function(){var b=k.createElement("div");b.innerHTML='<input type="file" />';b=b.getElementsByTagName("input")[0];return"file"!=b.type||b.disabled?f:e}(),h="ontouchstart"in a?e:f,m;try{m=typeof navigator.geolocation!==d?e:typeof a.google!==d&&typeof google.gears!==d?e:typeof device!==d&&typeof device.getServiceObject!==d?e:typeof Mojo!==d&&"Mojo.Service.Request"!==typeof Mojo.Service.Request?e:f}catch(p){m=f}var l=function(b){try{var d=a.Audio?new Audio:k.createElement("audio");if(d.canPlayType&&d.canPlayType(b)&&"no"!=d.canPlayType(b))return e}catch(c){}return f}("audio/mpeg"),n=function(b){try{for(var a=k.createElement("div"),c=0,g=["webkit","Moz","ms","O",""],h=g.length;c<h;c++){var l=g[c],m=l?l+b:b.toLowerCase();if(typeof a.style[m]!==d)return e}return f}catch(n){return f}}("Transform");return c+g+h+m+l+n+((a.XMLHttpRequest||a.XDomainRequest)&&(a.FormData||a.FileReader&&(a.XMLHttpRequest&&XMLHttpRequest.sendAsBinary||a.ArrayBuffer&&a.Uint8Array&&(a.MozBlobBuilder||a.WebKitBlobBuilder||a.BlobBuilder)))?e:f)}var c=a.screen,g=c.width||0,c=c.height||0,n=a.devicePixelRatio||1,p=(k.cookie.match(/(^|;\s+)remixmdevice=([^;]+)/)||[])[2]||"",h=p.split("/");p&&g==h[0]&&c==h[1]&&7==h[3].length||(g=[g,c,n,l()].join("/"),k.cookie="remixmdevice=; expires="+(new Date(0)).toUTCString()+"; path=/",k.cookie="remixmdevice="+g+"; expires="+(new Date((new Date).getTime()+7776E6)).toUTCString()+"; path=/; domain=.vk.com",location.replace(location.toString()))})(document,window,"undefined","!","-");(function(a,d){var c=a.hash||"",b=c.substr(2);"#/"==c.substr(0,2)&&!d&&(b.match(/^\/*(away|login)(\.php)?([^a-z0-9\.]|$)/)&&(b=""),a.replace(a.protocol+"//"+a.host+"/"+b))})(location); //--> </script> <link type="text/css" rel="stylesheet" href="/css/s_c.css?244"></link> <link type="text/css" rel="stylesheet" media="only screen" href="/css/s_yzg.css?168"></link> <link rel="shortcut icon" href="/images/faviconnew.ico?5"></link> <link rel="canonical" href="http://vk.com/durov"></link><link rel="alternate" href="android-app://com.vkontakte.android/vkontakte/m.vk.com/durov" /> </head> <body id="vk" class="_hover vk_stickers_hints_support_no opera_mini_no vk_al_no"> <div id="vk_utils"></div> <div id="vk_head" class="mhead"> <div class="hb_wrap"><div class="hb_btn">&nbsp;</div></div> </div> <div id="vk_wrap"> <div id="l"></div> <div id="m"> <div id="mhead" class="mhead"> <a href="/" accesskey="*" class="hb_wrap mhb_home mhb_vkhome"> <div class="hb_btn mhi_home mhi_vkhome">&nbsp;</div> </a> <a href="/login?to=ZHVyb3Y-" class="hb_wrap mhb_notify" accesskey="#"> <div class="hb_btn"> <em class="mh_btn_label">войти</em> </div> </a> <div class="hb_wrap mhb_back al_back"><h1 class="hb_btn mh_header">Павел</h1></div></div> <div id="mcont" class="mcont"><div class="pcont fit_box"> <div class="owner_panel profile_panel"> <a href="/photo1_376599151?rev=1&from=profile"><img src="http://cs629231.vk.me/v629231001/c542/fcMCbfjDsv0.jpg" class="pp_img" alt="Павел Дуров" style="background-image:url(http://cs629231.vk.me/v629231001/c543/FfB--bOEVOY.jpg)" /></a> <div class="pp_cont"> <h2 class="op_header">Павел Дуров<b class="verified"></b></h2> <div class="pp_last_activity"></div> <div class="pp_status">道德經</div> <div class="pp_info">31 год, Санкт-Петербург</div> </div> <div class="op_block"><a class="wide_link pp_auth_link" href="/login?to=d3JpdGUx">Чтобы отправить сообщение <span class="pp_auth_link_a">Павлу</span>, Вам необходимо <b>войти</b>.</a></div> </div> <div class="ipanel bl_cont"> <div class="profile_info"><h4 class="slim_header">Информация</h4><div class="profile_info_cont"><div><dl class="pinfo_row _pinfo"><dt>День рождения:</dt><dd>10 октября 1984 г.</dd></dl><dl class="pinfo_row"><dt>Место работы:</dt><dd>Telegram</dd></dl></div> <div class="pinfo_row"><a class="wide_link al_pinfo" href="/durov?act=info">Полная информация »</a></div></div></div><a name="menu"></a><div class="profile_info"><h4 class="slim_header">Другое</h4><div class="profile_info_cont profile_info_custom"><ul class="profile_menu"> <li><a href="/albums1" class="pm_item">Фотографии <em class="pm_counter">233</em></a></li><li><a href="/durov?act=fans" class="pm_item">Подписчики <em class="pm_counter">6<span class="num_delim"> </span>032<span class="num_delim"> </span>503</em></a></li><li><a href="/videos1" class="pm_item">Видеозаписи <em class="pm_counter">14</em></a></li><li><a href="/durov?menu_opened#menu" class="pm_item" onclick="this.parentNode.parentNode.nextSibling.style.display='block';this.parentNode.style.display='none';return false;">Ещё..</a></li> </ul><ul class="profile_menu" style="display:none"> <li><a href="/durov?act=idols" class="pm_item">Интересные страницы <em class="pm_counter">43</em></a></li><li><a name="actions"></a><div class="profile_info"><h4 class="slim_header">Действия</h4><div class="profile_info_cont profile_info_custom"><ul class="context_menu"> <li ><a href="/durov?search=1" class="cm_item bli"><span class="cm_label">Поиск по записям</span></a></li> </ul></div></div></li> </ul></div></div> <a name="wall"></a> <h4 class="slim_header">223 записи</h4> <a name="posts"></a> <div class="wall_posts upanel bl_cont"> <div class="wall_item" data-copy='11316927_4699'> <a class="post__anchor anchor" name="post1_1237616"></a> <div class="wi_head"> <a href="/durov"><img src="http://cs629231.vk.me/v629231001/c543/FfB--bOEVOY.jpg" class="wi_img" /></a> <div class="wi_cont"> <div class="wi_author"><a class="pi_author" href="/durov">Павел Дуров</a> </div> <div class="wi_info"><a class="wi_date" href="/wall1_1237616">1 сен в 21:50</a></div> </div> </div> <div class="wi_body"> <div class="wi_explain"> </div> <div class="pic_body_wrap"> <div class="pic_body"> <div class="pic_header"> <a href="/ohuenko"><img src="http://cs628218.vk.me/v628218927/f562/6vAdzYRk0MA.jpg" class="pic_img" /></a> <div class="pic_cont"> <div class="pic_from"><span></span><i class="i_copy"></i><a class="pi_author" href="/ohuenko">Андрей Яковенко</a> </div> <div class="pic_desc"><a class="pic_desc_a" href="/wall11316927_4699">1 сен в 21:37</a></div> </div> </div> </div> <div class="pi_text"> <span><a href="/feed?section=search&q=%23TelegramTheBestStickers">#TelegramTheBestStickers</a> <br/>Подходят к завершению 15 новых стикерпаков&#33; По сложившейся традиции я предлагаю вам потестить их первыми. <br/><br/>На данный момент Telegram даёт возможность проявить себя и свои таланты более чем 50-ти художникам. Авторы получают не только локальную площадку для размещения своего творчества, но и щедрые индивидуальные премии каждые шесть месяцев. Всего с марта этого года на счета художников было переведено уже более &#036;450К — и это, конечно, только начало. </span><a href="/wall1_1237616" class="pi_text_more" onclick="this.nextSibling.style.display='inline';this.style.display='none';return false;">Показать полностью…</a><span style="display:none"><br/>Чтобы вступить в ряды нашего «творческого подразделения подпольной структуры <img class="emoji" alt="😎" src="/images/emoji/D83DDE0E.png">», нужно прислать свои варианты стикеров личным сообщением @_Yakovenko (username вводить без нижнего подчеркивания ) в Telegram. <br/>Формат подачи работ следующий: рисуете 3 стикера в цвете с одним и тем же персонажем и 5 контурных эскизов c ним же на разные эмоции. Размер одного стикера должен быть не меньше 512х512 пикселей. Количество присылаемых вариантов персонажей не ограничено, потому лучше сделать не меньше трёх на выбор. <br/>Не забудьте прикрепить ссылку на ваше портфолио и, если ваши работы понравятся, ждите дальнейших инструкций. <img class="emoji" alt="💪🏻" src="/images/emoji/D83DDCAAD83CDFFB.png"> <br/> <br/>Ссылки на наборы по порядку: <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FPhilTheOwl&post=1_1237616" target="_blank">telegram.me/addstickers/PhilTheOwl</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FKamikazeCat&post=1_1237616" target="_blank">telegram.me/addstickers/KamikazeCat</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FAmanita&post=1_1237616" target="_blank">telegram.me/addstickers/Amanita</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FGreenGo&post=1_1237616" target="_blank">telegram.me/addstickers/GreenGo</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FCrazyPony&post=1_1237616" target="_blank">telegram.me/addstickers/CrazyPony</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FAliceFox&post=1_1237616" target="_blank">telegram.me/addstickers/AliceFox</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FKoalaChuck&post=1_1237616" target="_blank">telegram.me/addstickers/KoalaChuck</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FTheBestMovie2&post=1_1237616" target="_blank">telegram.me/addstickers/TheBestMovie2</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FMsPaws&post=1_1237616" target="_blank">telegram.me/addstickers/MsPaws</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FLazybonesJoe&post=1_1237616" target="_blank">telegram.me/addstickers/LazybonesJoe</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FTheHipsterCat&post=1_1237616" target="_blank">telegram.me/addstickers/TheHipsterCat</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FObeyReptilians&post=1_1237616" target="_blank">telegram.me/addstickers/ObeyReptilians</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FDearWolf&post=1_1237616" target="_blank">telegram.me/addstickers/DearWolf</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FBananaDude&post=1_1237616" target="_blank">telegram.me/addstickers/BananaDude</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FMetcast&post=1_1237616" target="_blank">telegram.me/addstickers/Metcast</a></span></div> <div class="pi_medias thumbs_list thumbs_list1"> <div class="medias_thumbs"><a class="medias_thumb thumb_item al_photo" href="/photo11316927_428929212?list=wall1_1237616&from=profile"><img src="http://cs636116.vk.me/v636116927/2467e/1UWGjveipqI.jpg" class="ph_img" data-id="11316927_428929212" data-src_big="http://cs636116.vk.me/v636116927/2467f/j5tXSKbuJsw.jpg|604|422" /></a></div></div> </div> <div class="wi_buttons"> <span class="like_wrap"><a class="item_like _i" href="/like?act=add&object=wall1_1237616&from=durov&hash=0e46d718df6142f554&wide=1"><i class="i_like"></i><b class="v_like">2<span class="num_delim"> </span>933</b></a><a class="item_share _i" href="/like?act=publish&object=wall1_1237616&from=durov"><i class="i_share"></i><b class="v_share">130</b></a></span><a class="item_replies _i" href="/wall1_1237616?post_add#post_add"><i class="i_replies"></i><b class="v_replies">17<span class="num_delim"> </span>777</b></a> </div> </div> </div> <div class="wall_item" data-copy='11316927_4674'> <a class="post__anchor anchor" name="post1_1237612"></a> <div class="wi_head"> <a href="/durov"><img src="http://cs629231.vk.me/v629231001/c543/FfB--bOEVOY.jpg" class="wi_img" /></a> <div class="wi_cont"> <div class="wi_author"><a class="pi_author" href="/durov">Павел Дуров</a> </div> <div class="wi_info"><a class="wi_date" href="/wall1_1237612">1 сен в 21:50</a></div> </div> </div> <div class="wi_body"> <div class="wi_explain"> </div> <div class="pic_body_wrap"> <div class="pic_body"> <div class="pic_header"> <a href="/ohuenko"><img src="http://cs628218.vk.me/v628218927/f562/6vAdzYRk0MA.jpg" class="pic_img" /></a> <div class="pic_cont"> <div class="pic_from"><span></span><i class="i_copy"></i><a class="pi_author" href="/ohuenko">Андрей Яковенко</a> </div> <div class="pic_desc"><a class="pic_desc_a" href="/wall11316927_4674">17 авг в 16:49</a></div> </div> </div> </div> <div class="pi_text"> <span><a href="/feed?section=search&q=%23TelegramTheBestStickers">#TelegramTheBestStickers</a><br/>Gotcha&#33;<br/>Прямо из-под планшетов подоспела новая партия горячих наборов&#33; Пока сохнет краска в пикселях, предлагаю вам в числе первых заценить их уже сейчас.<br/>И, конечно, тренд уходящего лета — ловите стикеры по игре Pokemon GO<img class="emoji" alt="🎮" src="/images/emoji/D83CDFAE.png"></span><a href="/wall1_1237612" class="pi_text_more" onclick="this.nextSibling.style.display='inline';this.style.display='none';return false;">Показать полностью…</a><span style="display:none"><br/><br/>Ссылки на наборы по порядку: <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FJeanJacques&post=1_1237612" target="_blank">telegram.me/addstickers/JeanJacques</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FCorgeous&post=1_1237612" target="_blank">telegram.me/addstickers/Corgeous</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FMantisEva&post=1_1237612" target="_blank">telegram.me/addstickers/MantisEva</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FCannamela&post=1_1237612" target="_blank">telegram.me/addstickers/Cannamela</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FKookyCat&post=1_1237612" target="_blank">telegram.me/addstickers/KookyCat</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FMishkaTheBear&post=1_1237612" target="_blank">telegram.me/addstickers/MishkaTheBear</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FMrRibbit&post=1_1237612" target="_blank">telegram.me/addstickers/MrRibbit</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FPokemonMasters&post=1_1237612" target="_blank">telegram.me/addstickers/PokemonMasters</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FHeyProboscis&post=1_1237612" target="_blank">telegram.me/addstickers/HeyProboscis</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FCrazySnail&post=1_1237612" target="_blank">telegram.me/addstickers/CrazySnail</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FUnicornStella&post=1_1237612" target="_blank">telegram.me/addstickers/UnicornStella</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FRed_Riding_Hood_and_Wolf&post=1_1237612" target="_blank">telegram.me/addstickers/Red_Riding_Hood_and_Wolf</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FRuntsAnimals&post=1_1237612" target="_blank">telegram.me/addstickers/RuntsAnimals</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FGoRobot&post=1_1237612" target="_blank">telegram.me/addstickers/GoRobot</a> <br/><a href="/away.php?to=http%3A%2F%2Ftelegram.me%2Faddstickers%2FLamaCritic&post=1_1237612" target="_blank">telegram.me/addstickers/LamaCritic</a></span></div> <div class="pi_medias thumbs_list thumbs_list1"> <div class="medias_thumbs"><a class="medias_thumb thumb_item al_photo" href="/photo11316927_426775404?list=wall1_1237612&from=profile"><img src="http://cs633429.vk.me/v633429927/43dfd/KTaAf6q0J8c.jpg" class="ph_img" data-id="11316927_426775404" data-src_big="http://cs633429.vk.me/v633429927/43dfe/44ohqJhEsDg.jpg|604|422" /></a></div></div> </div> <div class="wi_buttons"> <span class="like_wrap"><a class="item_like _i" href="/like?act=add&object=wall1_1237612&from=durov&hash=7abb2d53bb10e452d2&wide=1"><i class="i_like"></i><b class="v_like">1<span class="num_delim"> </span>594</b></a><a class="item_share _i" href="/like?act=publish&object=wall1_1237612&from=durov"><i class="i_share"></i><b class="v_share">50</b></a></span><a class="item_replies _i" href="/wall1_1237612?post_add#post_add"><i class="i_replies"></i><b class="v_replies">1<span class="num_delim"> </span>921</b></a> </div> </div> </div> <div class="wall_item"> <a class="post__anchor anchor" name="post1_1184057"></a> <div class="wi_head"> <a href="/durov"><img src="http://cs629231.vk.me/v629231001/c543/FfB--bOEVOY.jpg" class="wi_img" /></a> <div class="wi_cont"> <div class="wi_author"><a class="pi_author" href="/durov">Павел Дуров</a> </div> <div class="wi_info"><a class="wi_date" href="/wall1_1184057">17 авг в 17:46</a></div> </div> </div> <div class="wi_body"> <div class="wi_explain"> </div> <div class="pi_text"> <span>7 претензий к новому дизайну веб-версии ВКонтакте:<br/><br/>1. Главный раздел сайта – Новости – стали уже. Парадоксально, что необходимость редизайна обосновывалась стремлением более эффективно использовать экран. По факту, если сравнить ширину записей в старой и новой версии, новости лишь сузились на 28px.</span><a href="/wall1_1184057" class="pi_text_more" onclick="this.nextSibling.style.display='inline';this.style.display='none';return false;">Показать полностью…</a><span style="display:none"><br/><br/>2. Новости – как и все остальные разделы – стали ниже на 42px. Из-за фиксированной шапки вертикальное пространство сайта стало меньше, нужно больше проматывать. Это серьезное изменение к худшему: именно вертикальный скролл представляет собой дефицит на большинстве дисплеев.<br/><br/>3. При просмотре главного раздела сайта – Новостей – утрачивается фокус на контенте. В новой версии возник визуальный мусор в виде редко используемой фиксированной правой колонки. С учетом фиксированной шапки и узкой ширины, просмотр новостей стал вдвойне захламлен.<br/><br/>4. При просмотре фотографий утрачен фокус на самой картинке. Фотографии смещены влево, а яркое пятно белой колонки комментариев, появившейся справа, перетягивает на себя фокус внимания. Это решение было скопировано c Facebook, который в свое время ввел правую колонку для размещения дополнительных рекламных блоков. <br/><br/>5. Статичная левая колонка при промотке старых записей личных страниц не только не дает нужной информации, но и сужает горизонтальное пространство для просмотра записей по сравнению со старой версией. Аналогичная ситуация – при просмотре записей в группах и пабликах. <br/><br/>6. Замена белого цвета фона на серый не только уменьшила ощущение чистоты и минимализма, но и в целом сделала сайт более грустным и пасмурным. Появившиеся сизые иконки на сером меню слева на всех страницах избыточны и представляют собой визуальный мусор.<br/><br/>7. Старый логотип “ВКонтакте” в силу композиции лучше вписывался в горизонтальную шапку, чем новый логотип “VK”. Я нарисовал оба логотипа достаточно давно (первый около 10 лет назад, второй – около 5), но в русскоязычной версии не заменял старый логотип международным именно в силу этого – достаточно очевидного – обстоятельства.<br/><br/>Итог: старый дизайн ВКонтакте, не менявшийся несколько лет, безусловно, нуждался в ряде доработок и эстетическом переосмыслении в рамках новых стилей. Однако проведенный редизайн не только не соответствует стандартам 15-16 года (таким, как Material), но и снижает юзабельность ресурса. <br/><br/>Все перечисленные элементы нового дизайна были вслепую скопированы с Фейсбука образца 2012. Фейсбук в эти годы был вынужден наращивать прибыльность в рамках IPO, поэтому в проектировании дизайна жертвовал интересами пользователей ради добавления новых рекламных блоков. Отсюда появилась и правая колонка в Новостях и Фотографиях, и снижение фокуса на контенте ради рекламы. <br/><br/>Сегодня, когда монетизация ВКонтакте переносится в “умную” ленту и мобильные клиенты, подобные шаги не обоснованы. В 2016м году Facebook должен был копировать наработки ВКонтакте, а не наоборот.</span></div> <div class="pi_medias thumbs_list thumbs_list7"> <div class="medias_thumbs"><a class="medias_thumb thumb_item al_photo" href="/photo1_430420801?list=wall1_1184057&from=profile"><img src="http://cs543106.vk.me/v543106001/1c432/NxZ5u6RIC-Y.jpg" class="ph_img" data-id="1_430420801" data-src_big="http://cs543106.vk.me/v543106001/1c433/9lvaMS0Pzcg.jpg|604|537" /></a><a class="medias_thumb thumb_item al_photo" href="/photo1_430424714?list=wall1_1184057&from=profile"><img src="http://cs543106.vk.me/v543106001/1c488/j82X1rUAC9o.jpg" class="ph_img" data-id="1_430424714" data-src_big="http://cs543106.vk.me/v543106001/1c489/GioUGyaSgqA.jpg|604|375" /></a><a class="medias_thumb thumb_item al_photo" href="/photo1_430420878?list=wall1_1184057&from=profile"><img src="http://cs543106.vk.me/v543106001/1c444/Ho8FUoc7cCc.jpg" class="ph_img" data-id="1_430420878" data-src_big="http://cs543106.vk.me/v543106001/1c445/6L3kxoFW8qI.jpg|604|234" /></a><a class="medias_thumb thumb_item al_photo" href="/photo1_430425125?list=wall1_1184057&from=profile"><img src="http://cs543106.vk.me/v543106001/1c491/2x-nxFeFElU.jpg" class="ph_img" data-id="1_430425125" data-src_big="http://cs543106.vk.me/v543106001/1c492/Rf1ZluR1Svg.jpg|604|256" /></a><a class="medias_thumb thumb_item al_photo" href="/photo1_430420944?list=wall1_1184057&from=profile"><img src="http://cs543106.vk.me/v543106001/1c458/VsPg4JlMSlc.jpg" class="ph_img" data-id="1_430420944" data-src_big="http://cs543106.vk.me/v543106001/1c459/_ms_LSeL92I.jpg|604|257" /></a><a class="medias_thumb thumb_item al_photo" href="/photo1_430421053?list=wall1_1184057&from=profile"><img src="http://cs543106.vk.me/v543106001/1c46c/tzPcsvCfFSc.jpg" class="ph_img" data-id="1_430421053" data-src_big="http://cs543106.vk.me/v543106001/1c46d/tdYk8GzHQ8I.jpg|604|188" /></a><a class="medias_thumb thumb_item al_photo" href="/photo1_430421078?list=wall1_1184057&from=profile"><img src="http://cs543106.vk.me/v543106001/1c476/MsWJDN6mYUU.jpg" class="ph_img" data-id="1_430421078" data-src_big="http://cs543106.vk.me/v543106001/1c477/BMkUFjcitd8.jpg|604|205" /></a></div></div> <div class="wi_buttons"> <span class="like_wrap"><a class="item_like _i" href="/like?act=add&object=wall1_1184057&from=durov&hash=0e6739baf8c9ea42b3&wide=1"><i class="i_like"></i><b class="v_like">108<span class="num_delim"> </span>250</b></a><a class="item_share _i" href="/like?act=publish&object=wall1_1184057&from=durov"><i class="i_share"></i><b class="v_share">12<span class="num_delim"> </span>449</b></a></span><a class="item_replies _i" href="/wall1_1184057?post_add#post_add"><i class="i_replies"></i><b class="v_replies">44<span class="num_delim"> </span>092</b></a> </div> </div> </div> <div class="wall_item"> <a class="post__anchor anchor" name="post1_1133071"></a> <div class="wi_head"> <a href="/durov"><img src="http://cs629231.vk.me/v629231001/c543/FfB--bOEVOY.jpg" class="wi_img" /></a> <div class="wi_cont"> <div class="wi_author"><a class="pi_author" href="/durov">Павел Дуров</a> </div> <div class="wi_info"><a class="wi_date" href="/wall1_1133071">21 июл в 17:11</a></div> </div> </div> <div class="wi_body"> <div class="wi_explain"> </div> <div class="pi_text">И к более насущному вопросу: что придет на замену KickassTorrents? <br/><br/><a href="/away.php?to=https%3A%2F%2Flenta.ru%2Fnews%2F2016%2F07%2F21%2Fthe_best_torrent%2F&post=1_1133071" target="_blank">https://lenta.ru/news/2016/07/21/the_best_torrent/</a></div> <div class="pi_medias"><div class="medias_link_thumbed"> <a class="mlt_header" href="/away.php?to=https%3A%2F%2Flenta.ru%2Fnews%2F2016%2F07%2F21%2Fthe_best_torrent%2F&post=1_1133071" target="_blank"> <div class="mlt_title">В Польше задержали создателя самого популярного торрент-трекера в мире</div> <div class="mlt_link">lenta.ru</div></a> <div class="mlt_thumb" style="background-image:url(http://cs630516.vk.me/v630516641/3db35/HIxk9vOzkTY.jpg)"></div> <div class="mlt_cont"> <div class="mlt_body"> <div class="mlt_desc">В Польше по запросу американских властей задержан гражданин Украины Артем Ваулин, которого называют создателем самого популярного в мире торрент-трекера Kickass Torrents. Его обвиняют..</div> </div> </div> </div></div> <div class="wi_buttons"> <span class="like_wrap"><a class="item_like _i" href="/like?act=add&object=wall1_1133071&from=durov&hash=7d4a2dac46794552c4&wide=1"><i class="i_like"></i><b class="v_like">7<span class="num_delim"> </span>318</b></a><a class="item_share _i" href="/like?act=publish&object=wall1_1133071&from=durov"><i class="i_share"></i><b class="v_share">376</b></a></span><a class="item_replies _i" href="/wall1_1133071?post_add#post_add"><i class="i_replies"></i><b class="v_replies">37<span class="num_delim"> </span>469</b></a> </div> </div> </div> <div class="wall_item" data-copy='-55882680_85'> <a class="post__anchor anchor" name="post1_1108590"></a> <div class="wi_head"> <a href="/durov"><img src="http://cs629231.vk.me/v629231001/c543/FfB--bOEVOY.jpg" class="wi_img" /></a> <div class="wi_cont"> <div class="wi_author"><a class="pi_author" href="/durov">Павел Дуров</a> </div> <div class="wi_info"><a class="wi_date" href="/wall1_1108590">5 июл в 19:54</a></div> </div> </div> <div class="wi_body"> <div class="wi_explain"> </div> <div class="pic_body_wrap"> <div class="pic_body"> <div class="pic_header"> <a href="/durovschallenge"><img src="http://cs604327.vk.me/v604327001/5d27/luBz-WO1E-4.jpg" class="pic_img" /></a> <div class="pic_cont"> <div class="pic_from"><span></span><i class="i_copy"></i><a class="pi_author" href="/durovschallenge">Telegram Challenge</a> </div> <div class="pic_desc"><a class="pic_desc_a" href="/wall-55882680_85">5 июл в 2:06</a></div> </div> </div> </div> <div class="pi_text">После тщательного тестирования подведены итоги Telegram Android Challenge 2016. Всего было прислано 52 конкурсных приложения. <br/><br/>1 место: Адель Низамутдинов и Евгений Авсиевич. Каждый из занявших первое место получает 300,000 рублей.<br/>2 место: Григорий Клюшников и Станислав Федоров. Каждый из занявших второе место получает 200,000 рублей.<br/>3 место: Mykhailo (TgCameraChallenge) и Alex (Cameraphone). Каждый из занявших третье место получает 100,000 рублей.<br/><br/>Детали тестирования каждого из присланных приложений – <a href="/away.php?to=https%3A%2F%2Fdocs.google.com%2Fdocument%2Fd%2F1atMrHfjcqLIu2PBD07PrsIGPjE3Idu9Wkf_1CyoGeAU%2Fedit&post=1_1108590" target="_blank" title="https://docs.google.com/document/d/1atMrHfjcqLIu2PBD07PrsIGPjE3Idu9Wkf_1CyoGeAU/edit">https://docs.google.com/document/d/1atMrHfjcqLIu2PBD0..</a>. К сожалению, ни одно приложение не продемонстрировало безупречно стабильную работу. По желанию участников мы можем выcлать подробные логи ошибок их приложений при каждом падении.<br/><br/>Поздравляем победителей&#33; Денежные призы и сертификаты будут разосланы каждому из 6 победителей в течение июля.</div> <div class="pi_medias"><div class="medias_link_thumbed"> <a class="mlt_header" href="/away.php?to=https%3A%2F%2Fdocs.google.com%2Fdocument%2Fd%2F1atMrHfjcqLIu2PBD07PrsIGPjE3Idu9Wkf_1CyoGeAU%2Fedit&post=1_1108590" target="_blank"> <div class="mlt_title">Camera contest</div> <div class="mlt_link">docs.google.com</div></a> <div class="mlt_thumb" style="background-image:url(http://cs604420.vk.me/v604420001/17b62/HPCbNlBqkBA.jpg)"></div> <div class="mlt_cont"> <div class="mlt_body"> <div class="mlt_desc">Девайсы, на которых проводилось тестирование: Samsung Galaxy S3 (Android 4.3), Moto X (4.4), Moto G (6.0), Xiami Redmi Note 2 (5.0.2), Lenovo K900 (4.2.1). 1 - Adel Nizamutdinov -..</div> </div> </div> </div></div> <div class="pi_signed"> <span></span><i class="i_signed"></i><a class="user" href="/durov">Павел Дуров</a> </div> </div> <div class="wi_buttons"> <span class="like_wrap"><a class="item_like _i" href="/like?act=add&object=wall1_1108590&from=durov&hash=e3681136d1935d9c21&wide=1"><i class="i_like"></i><b class="v_like">4<span class="num_delim"> </span>235</b></a><a class="item_share _i" href="/like?act=publish&object=wall1_1108590&from=durov"><i class="i_share"></i><b class="v_share">84</b></a></span><a class="item_replies _i" href="/wall1_1108590?post_add#post_add"><i class="i_replies"></i><b class="v_replies">15<span class="num_delim"> </span>180</b></a> </div> </div> </div> <div class="show_more_wrap"><a class="show_more" href="/durov?offset=5&own=1#posts">Показать ещё</a></div> </div> </div> </div></div> <div id="mfoot" class="mfoot"><div class="pfoot"> <ul id="footer_menu" class="footer_menu"> <li class="fm_row"><a class="fm_item" href="/">На главную</a></li> <li class="fm_row"><a id="fv_link" class="fm_item fv_link" href="http://vk.com/durov?_fm=profile">Полная версия</a></li> </ul> </div></div> <div class="_cntrs" style="height:0;"> <img width="1" height="1" src="//counter.yadro.ru/hit?uhttp%3A%2F%2Fm.vk.com%2Fdurov;r;51547724" alt="" align="left" /> <img width="1" height="1" src="//b.scorecardresearch.com/p?c1=2&c2=13765216&c3=&c4=http%3A%2F%2Fm.vk.com%2Fdurov&c5=&c9=&c15=&cv=2.0&cj=1&rn=51547724" alt="" align="left" /> <img src="//top-fwz1.mail.ru/counter?id=2579437;pid=0;r=" style="border:0;" height="1" width="1" /> </div></div> <div id="z"></div> </div> <div id="vk_bottom"></div> <script type="text/javascript"> <!-- parent&&parent!=window&&(document.getElementsByTagName('body')[0].innerHTML=''); //--> </script> </body> </html>
q
2016-09-18T13:13:45.000Z
^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$
Email validation
2016-09-06T10:27:01.000Z
^\d{0,6}(\.\d{1,2})?$
123456.12 21231 123456 15465.43 23.34 6.45 12345678 123456.331
^0*[1-9][0-9]*(\.[0-9]+)?|0+\.[0-9]*[1-9][0-9]*$
2016-09-06T06:19:47.000Z
From the Linux Screen.print method, after recording a log which involves some apt-getting, we want to find and trim out all that fat. This is Part 1
(^(\d+%((?!\r\n)\s+))(\[((\w+)((\-\w+)?((?!\r\n)\s+)?(\w+)?((?!\r\n)\s+)?(\d+)?(\,)?(\d+)?(\.)?(\d?)((?!\r\n)\s+)?(k?B)?)?((?!\r\n)\s+)?(\w+)?\]))?(((((?!\r\n)\s+)\[)(.+)\])*(((?!\r\n)\s+)(\[)(.+))?(\r?\n)))
100% [Working] 100% [Packages 201 kB] [Waiting for headers] 100% [Waiting for headers] 100% [Packages 201 kB] [Waiting for headers] 100% [Sources 4,444 B] [Waiting for headers] [Waiting for headers] 100% [Packages 39.0 kB] [Waiting for headers] [Waiting for headers] 100% [Translation-en 904 kB] [Waiting for headers] [Waiting for headers] 10% [InRelease gpgv 64.5 kB] [Waiting for headers] [Waiting for headers] [Waiti Reading package lists... 0% Reading package lists... 0% Reading package lists... 1% Reading package lists... 6% 100% [Translation-en 4,149 kB] 17.4 MB/s 0s 100% [Working] 17.4 MB/s 0s 100% [Translation-en 409 kB] 17.4 MB/s 0s 100% [Working] 17.4 MB/s 0s 100% [Translation-en 21.2 kB] 17.4 MB/s 0s 100% [Working] 17.4 MB/s 0s 100% [Translation-en 18.6 MB] 17.4 MB/s 0s 100% [Working] 17.4 MB/s 0s 100% [Working] 100% [Packages 201 kB] [Waiting for headers] 100% [Waiting for headers] Hit http://us.archive.ubuntu.com trusty-backports/multiverse i386 Packages 100% [Working] 100% [Packages 3,341 B] [Waiting for headers] 100% [Waiting for headers] Hit http://us.archive.ubuntu.com trusty-backports/main Translation-en 28% [Sources 507 kB] [1 InRelease 14.2 kB/64.4 kB 22%] [Waiting for headers] [W 28% [Sources 507 kB] [InRelease gpgv 15.4 kB] [1 InRelease 14.2 kB/64.4 kB 22%] 28% [Sources 507 kB] [InRelease gpgv 15.4 kB] [1 InRelease 14.2 kB/64.4 kB 22%] 91% [InRelease gpgv 15.4 kB] [1 InRelease 14.2 kB/64.4 kB 22%] [Waiting for hea 100% [Translation-en 363 kB] [4 Sources 221 kB/250 kB 89%] [Waiting for headers 100% [4 Sources 221 kB/250 kB 89%] [Waiting for headers] [5 Packages 17.0 kB/23
Remove Package Connection data from screen.log
2016-02-08T23:21:30.000Z
Separates media query into rule and content
@media([^{]+)\{([\s\S]+?})\s*}
@media (max-width: 868px) { aside .size-toggle { display: none; } } @media (max-width: 767px) { #wrapper.sidebar-display aside { left: 0; transition: all 0.5s ease; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -ms-transition: all 0.5s ease; -o-transition: all 0.5s ease; } #wrapper.sidebar-display #top-nav { left: 0; right: -194px; } }
@media query tokenizer
2015-05-05T10:16:11.000Z
(?<="value":")(.*?)(?=",)
</ac:layout-cell></ac:layout-section><ac:layout-section ac:type=\"two_equal\"><ac:layout-cell><h4>Deployed Services</h4><table style=\"line-height: 1.42857;\"><thead><tr><th><div class=\"tablesorter-header-inner\">Component</div></th><th><div class=\"tablesorter-header-inner\">Version (click for release notes)</div></th><th><div class=\"tablesorter-header-inner\">Deployed on</div></th></tr></thead><tbody><tr><td>fs-newarch-proxy</td><td>3.0.10.86</td><td><p><span>2016/06/15 7:30am</span></p></td></tr><tr><td colspan=\"1\">fs-newarch-client-proxy</td><td colspan=\"1\">3.0.10.53</td><td colspan=\"1\"><span>2016/06/03 1<span>:30pm</span></span></td></tr><tr><td colspan=\"1\">fiws-proxy</td><td colspan=\"1\"><span>3.0.10.35</span></td><td colspan=\"1\"><span>2016/06/03 11:30<span>am</span></span></td></tr><tr><td colspan=\"1\">fdsm-ocs-proxy</td><td colspan=\"1\">3.0.10.2</td><td colspan=\"1\">2016/06/20 12:30pm</td></tr><tr><td colspan=\"1\">fs-container</td><td colspan=\"1\">1.3.10</td><td colspan=\"1\"><span>2016/06/20 4:00pm</span></td></tr><tr><td colspan=\"1\">fs-persistence</td><td colspan=\"1\">1.0.9</td><td colspan=\"1\"><span>2016/04/25 11:30am</span></td></tr><tr><td colspan=\"1\">fs-monitoring</td><td colspan=\"1\">1.2</td><td colspan=\"1\">2016/04/27 11:00am</td></tr><tr><td class=\"highlight-grey\" colspan=\"1\" data-highlight-colour=\"grey\">&nbsp;</td><td class=\"highlight-grey\" colspan=\"1\" data-highlight-colour=\"grey\">&nbsp;</td><td class=\"highlight-grey\" colspan=\"1\" data-highlight-colour=\"grey\">&nbsp;</td></tr><tr><td colspan=\"1\">fs-account-maint-2</td><td colspan=\"1\">2.12</td><td colspan=\"1\"><span>2016/06/20 12:00pm</span></td></tr><tr><td colspan=\"1\">fs-account-search-3</td><td colspan=\"1\">3.2.9</td><td colspan=\"1\"><span>2016/06/08 4:00pm</span></td></tr><tr><td colspan=\"1\"><span>fs-account-search-4</span></td><td colspan=\"1\"><p>4.12</p></td><td colspan=\"1\"><span>2016/06/20 12:00pm</span></td></tr><tr><td colspan=\"1\">fs-core-2</td><td colspan=\"1\"><span>2.9</span></td><td colspan=\"1\"><span>2016/06/20 12:00pm</span></td></tr><tr><td colspan=\"1\">fs-fiws-services-2</td><td colspan=\"1\">2.18</td><td colspan=\"1\"><span>2016/06/20 12:00pm</span></td></tr><tr><td colspan=\"1\">fs-memos-1</td><td colspan=\"1\"><span>1.82</span></td><td colspan=\"1\"><span>2016/06/20 12:00pm</span></td></tr><tr><td colspan=\"1\">fs-secureconfig-2</td><td colspan=\"1\">2.215</td><td colspan=\"1\"><span>2016/06/20 12:00pm</span></td></tr><tr><td colspan=\"1\">fs-statements-1</td><td colspan=\"1\">1.69</td><td colspan=\"1\"><p><span>2016/06/08 11:00am</span></p></td></tr><tr><td colspan=\"1\">fs-statements-2</td><td colspan=\"1\">2.72</td><td colspan=\"1\"><span>2016/06/20 12:00pm</span></td></tr><tr><td colspan=\"1\">fs-token-3</td><td colspan=\"1\">3.213</td><td colspan=\"1\"><span>2016/06/20 12:00pm</span></td></tr><tr><td colspan=\"1\">fs-token-4</td><td colspan=\"1\">4.216</td><td colspan=\"1\">2016/06/22 3:00pm</td></tr><tr><td colspan=\"1\">fs-ui-services-2</td><td colspan=\"1\">2.9</td><td colspan=\"1\"><span>2016/06/20 12:00pm</span></td></tr><tr><td class=\"highlight-grey\" colspan=\"1\" data-highlight-colour=\"grey\">&nbsp;</td><td class=\"highlight-grey\" colspan=\"1\" data-highlight-colour=\"grey\">&nbsp;</td><td class=\"highlight-grey\" colspan=\"1\" data-highlight-colour=\"grey\">&nbsp;</td></tr><tr><td colspan=\"1\">fs-web</td><td colspan=\"1\">2.0.11</td><td colspan=\"1\">2016/06/22 12:30pm</td></tr><tr><td>fs-ui</td><td>1.0.0-SNAPSHOT</td><td>&nbsp;</td></tr><tr><td colspan=\"1\">fs-swagger-ui</td><td colspan=\"1\">0.0.2</td><td colspan=\"1\">2016/03/08 4:56pm</td></tr></tbody>
grab value from json
2016-06-23T17:25:58.000Z
I have this regex and input string. But nothing is displayed in output area. Could you please help to know why it is not displaying output? Thanks.
(?=(?:(?:[^"]*"){2})*[^"]*$)\\n
11, 12, "inside\n the\n quotes", 13, 14\n21, 22, "another \ntest\n case", 23, 24
Output string is not displayed for given regex
2015-03-31T17:16:24.000Z
[^\p{Arabic} ]*
Arabic example
2015-02-03T11:48:20.000Z
Remove HTML tags and comments
<.*?>|&.*?;|\\n|\\xa0
<p>It’s time\xa0for the season finale of Ontario Diagnostic Days!</p>\n<p>The annual Ontario field crop diagnostic days held at Ridgetown, Elora, and Winchester are again virtual in 2021. On this live broadcast, University of Guelph professors Dave Hooker and Francois Tardif join host Shaun Haney to talk three hot topics that are sure to grab growers&#8217; attention, as we look forward to the 2022 crop year.</p>\n<p>Haney and Hooker kick off the show with a look at the state of fertilizer supply and demand and the significant cost growers could face in 2022 when feeding their crops. Hooker then digs into research work on\xa0phosphorus and potassium and soil test levels, to determine how investing in these nutrients makes sense for 2022 corn and soybeans.</p>\n<p>Nitrogen is also up for discussion. Hooker looks at the importance of rate and timing, split applications, and how growers could reduce environmental losses with help from\xa0nitrogen inhibitors and stabilizers.</p>\n<p>Tardif then joins Haney to look at the continuing spread of herbicide-resistant weeds across Ontario, discussing how waterhemp has spread dramatically, as well as the relentless march of glyphosate-resistant\xa0Canada fleabane. He also discusses the potential for the dreaded Palmer amaranth to migrate north to Ontario.</p>\n<p>How have these weeds spread so quickly? Tardif notes that while waterfowl and wind patterns are typically pegged as the culprits fuelling the spread, equipment operators also need to acknowledge their role in creating the problem. He says much has been made about the fact that Canada fleabane seeds can be found in the earth boundary layer and can move vast distances. This theory has been overblown, he asserts. Weed scientists are now more inclined to believe that local selection is much more important than long distance spread.</p>\n<p>Hooker then rejoins the show to talk tar spot — the corn leaf disease that&#8217;s been showing up in many fields across southern Ontario this year. After a season <a href="https://www.realagriculture.com/2021/10/corn-school-inside-the-tar-spot-management-toolbox/">recap from OMAFRA plant pathologist Albert Tenuta</a>, Hooker peers into the tar spot management toolbox to assess the level of tolerance current hybrids offer growers. He also discusses how hybrid choice will play a key role in defending corn crops against the disease in 2022 and beyond. <em>(More about the series after the video.)</em></p>\n<!-- video --><div class="youtube-responsive" id="realagvideo280475" uk-scrollspy="hidden:false;"><iframe width="640" height="360" data-src="https://www.realagriculture.com/media/rav-61782199a3ee5.html" frameborder="0" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen id="realagvideoframe280475" class="realagvideoframe" srcdoc="<a href=&quot;https://www.realagriculture.com/media/rav-61782199a3ee5.html"> src=&quot;https://www.realagriculture.com/media/realag_iframe_placeholder.png" alt=&quot;If player does not load, click here to refresh.&quot; width=&quot;100%&quot; align=&quot;center&quot;></a>"></iframe></div>\n<p>The organizing committees of these three highly successful in-field education and learning events are again partnering with crop researchers and extension, along with support from RealAgriculture and a host of sponsors to bring you a series of eight\xa0<a href="https://www.realagriculture.com/ontariodiagnosticdays/">Ontario Diagnostic Days</a>\xa0episodes.</p>\n<p>We would like to thank the following sponsoring organizations: The Grain Farmers of Ontario, AGRIS Co-operative, BASF, Bayer/DeKalb, Corteva/Pioneer, Great Lakes Grain, Maizex Seeds, The Mosaic Company, PRIDE Seeds, RealAgriculture, and Syngenta.</p>\n<p>The series kicked off with this one-hour episode on Tuesday, July 20. A new episode is published every two weeks, on Tuesdays at 9 am Eastern, through to November 2, 2021. Each episode will highlight a general field crop agronomic theme and will be available\xa0here on RealAgriculture\xa0for viewing, as well as the\xa0OMAFRA Field Crop News\xa0website. All episodes will also be available in our main podcast feed.</p>\n<p>The virtual video series gives the OMAFRA field crop team, research colleagues from the University of Guelph, and industry agronomists an opportunity to deliver diagnostic insights in a new way, sharing what attendees have come to expect from Diagnostic Days at Ridgetown, Elora, and Winchester. As part of the offering, continuing education credits (CEU) will also be available.</p>\n<p>Historically, these in-person diagnostic days have provided some of the best opportunities for certified crop advisors (CCAs) to acquire a broad range of CEUs.</p>\n<p>Certified crop advisors will be able to collect eight CEUs\xa0by\xa0<a href="https://bdc.ridgetownc.com/registration/?OfferingCode=1166#maincontent">registering for the event here</a>. Registration is required for processing CEU credit requests and can be done up to December 1, 2021. Directions for applying for CEUs will be provided during each episode.</p>\n<p>The videos are free and registration is not required for Grain Farmers of Ontario members, media, and those not seeking CEU credits.</p>\n<p>Registration Fees\xa0 — Only required if applying for CEU Credits</p>\n<p>·\xa0\xa0\xa0\xa0\xa0 $100 (plus HST) for eight CEU credits. A receipt/confirmation email will be provided.</p>\n<p><a href="https://www.realagriculture.com/ontariodiagnosticdays/">Click\xa0here previous Ontario Diagnostic Days episodes.</p>\n<p class="powerpress_links powerpress_subscribe_links">Subscribe: <a href="https://itunes.apple.com/ca/podcast/realagricultures-podcasts/id975730628?mt=2&ls=1#episodeGuid=https%3A%2F%2Fwww.realagriculture.com%2F%3Fp%3D280387" class="powerpress_link_subscribe powerpress_link_subscribe_itunes" title="Subscribe on Apple Podcasts" rel="nofollow">Apple Podcasts</a> | <a href="https://subscribeonandroid.com/www.realagriculture.com/feed/podcast/" class="powerpress_link_subscribe powerpress_link_subscribe_android" title="Subscribe on Android" rel="nofollow">Android</a> | <a href="https://www.realagriculture.com/feed/podcast/" class="powerpress_link_subscribe powerpress_link_subscribe_rss" title="Subscribe via RSS" rel="nofollow">RSS</a></p><!--powerpress_player-->
Remove HTML tags and comments
2021-10-26T21:29:50.000Z
give then names of various executables filter out ones that run python3+
^python(3?(\.\d)?m?)?$
python3 python3.7 python3.6 python3.8 python python-argcomplete-tcsh python-argcomplete-check-easy-install-script python3.7-config python-config python3 python3.7m-config python2.7 python2 python2-config python2-pbr python3.7 python3.7m python3.6 python3.8 python3.9 python python2.7-config python3.6m python3m python-imports python-modules
python 3 executable regex
2021-04-09T16:38:34.000Z
^\/(?:[^\\\/:*?"<>|\r\n]+\/)*[^\\\/:*?"<>|\r\n]+$
/ddd/dd%/ddfa/asdfasdf/asdfasdf=/asdfasdf6/Ű/ddd{/d/d
LinuxFilePathValidation
2021-01-17T15:38:16.000Z
(?'indlvl'\s+) if\(asd\)\n\s+\{\n\s+ (?:[\w\W]*) \n\k'indlvl'\}
{ if(asd) { asd q="fg" { q } } }
indentation
2014-11-21T05:51:39.000Z
Validate IP v4
^(?:(?:[01]?\d?\d|2[0-4]\d|25[0-5])\.){3}(?:(?:[01]?\d?\d|2[0-4]\d|25[0-5]))
256. 1.1.1.1 10. 100.100.100.100 255. 249. 0.0.0.0 300. 01. 022. 001. 0001. 192.168.1.1
IP Validation
2016-03-17T13:55:18.000Z
(?<=\.)\w+$
C:\Users\KlausP\Pictures\Screenpresso\201.8-01-24_13h40_38.png C:\Users\KlausP\Pictures.png\Screenpresso\201.8-01-24_13h40_38.png C:\Users\KlausP\.png .\hallo .\.txt
File extension
2018-08-22T09:35:47.000Z
This regular expression will match an IPv4 address as well as both compressed or uncompressed IPv6 address.
^((([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$|^(([a-fA-F]|[a-fA-F][a-fA-F0-9\-]*[a-fA-F0-9])\.)*([A-Fa-f]|[A-Fa-f][A-Fa-f0-9\-]*[A-Fa-f0-9])$|^(?:(?:(?:(?:(?:(?:(?:[0-9a-fA-F]{1,4})):){6})(?:(?:(?:(?:(?:[0-9a-fA-F]{1,4})):(?:(?:[0-9a-fA-F]{1,4})))|(?:(?:(?:(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9]))\.){3}(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9])))))))|(?:(?:::(?:(?:(?:[0-9a-fA-F]{1,4})):){5})(?:(?:(?:(?:(?:[0-9a-fA-F]{1,4})):(?:(?:[0-9a-fA-F]{1,4})))|(?:(?:(?:(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9]))\.){3}(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9])))))))|(?:(?:(?:(?:(?:[0-9a-fA-F]{1,4})))?::(?:(?:(?:[0-9a-fA-F]{1,4})):){4})(?:(?:(?:(?:(?:[0-9a-fA-F]{1,4})):(?:(?:[0-9a-fA-F]{1,4})))|(?:(?:(?:(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9]))\.){3}(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9])))))))|(?:(?:(?:(?:(?:(?:[0-9a-fA-F]{1,4})):){0,1}(?:(?:[0-9a-fA-F]{1,4})))?::(?:(?:(?:[0-9a-fA-F]{1,4})):){3})(?:(?:(?:(?:(?:[0-9a-fA-F]{1,4})):(?:(?:[0-9a-fA-F]{1,4})))|(?:(?:(?:(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9]))\.){3}(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9])))))))|(?:(?:(?:(?:(?:(?:[0-9a-fA-F]{1,4})):){0,2}(?:(?:[0-9a-fA-F]{1,4})))?::(?:(?:(?:[0-9a-fA-F]{1,4})):){2})(?:(?:(?:(?:(?:[0-9a-fA-F]{1,4})):(?:(?:[0-9a-fA-F]{1,4})))|(?:(?:(?:(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9]))\.){3}(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9])))))))|(?:(?:(?:(?:(?:(?:[0-9a-fA-F]{1,4})):){0,3}(?:(?:[0-9a-fA-F]{1,4})))?::(?:(?:[0-9a-fA-F]{1,4})):)(?:(?:(?:(?:(?:[0-9a-fA-F]{1,4})):(?:(?:[0-9a-fA-F]{1,4})))|(?:(?:(?:(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9]))\.){3}(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9])))))))|(?:(?:(?:(?:(?:(?:[0-9a-fA-F]{1,4})):){0,4}(?:(?:[0-9a-fA-F]{1,4})))?::)(?:(?:(?:(?:(?:[0-9a-fA-F]{1,4})):(?:(?:[0-9a-fA-F]{1,4})))|(?:(?:(?:(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9]))\.){3}(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9])))))))|(?:(?:(?:(?:(?:(?:[0-9a-fA-F]{1,4})):){0,5}(?:(?:[0-9a-fA-F]{1,4})))?::)(?:(?:[0-9a-fA-F]{1,4})))|(?:(?:(?:(?:(?:(?:[0-9a-fA-F]{1,4})):){0,6}(?:(?:[0-9a-fA-F]{1,4})))?::)))))$
f:f:33::5:33:ff:0
Match a valid IPv4 or IPv6 address
2016-03-07T13:17:19.000Z
rwe
"(.+)T.+"\s.+q=(.+)
"2016-05-22T18:10:36+09:00" /c/search/unified?q=%EB%B8%94%EB%9D%BD%EB%B9%84&p=1&c=30
arwe
2016-07-12T02:04:41.000Z
(1080)
<!doctype html> <html class="xv-responsive" lang="en"> <head> <title>Mom needs it every day - XVIDEOS.COM</title> <meta charset="utf-8"> <!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"><![endif]--> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="keywords" content="xvideos,xvideos.com, x videos,x video,porn,video,videos,cumshot,sex,hardcore,blonde,sexy,milf,mature,toys,solo,mom,orgasm,abspritzen,dirty-tina,deutsche-pornos,deutsche-schlampe,deutsche-mutter"/> <meta name="description" content="XVIDEOS Mom needs it every day free"/> <meta name="verify-v1" content="3Awl+ctS3GOag+hKJiSg9SQQ2MR/GwV8H/PAgMhGhcM="/> <meta name="RATING" content="RTA-5042-1996-1400-1577-RTA"/> <meta http-equiv="pics-Label" content='(pics-1.1 "http://www.icra.org/pics/vocabularyv03/" l gen true for "http://xvideos.com" r (n 3 s 3 v 0 l 3 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 3) gen true for "http://www.xvideos.com" r (n 3 s 3 v 0 l 3 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 3))'/> <link rel="meta" href="https://www.xvideos.com/labels.rdf" type="application/rdf xml" title="ICRA labels"/> <meta property="og:title" content="Mom needs it every day" /> <meta property="og:type" content="video.movie" /> <meta property="og:url" content="http://www.xvideos.com/video38180533/mom_needs_it_every_day" /> <meta property="og:duration" content="648" /> <meta property="og:image" content="http://img-egc.xvideos-cdn.com/videos/thumbs169ll/65/fd/c7/65fdc71ebba387188974034ba1113002/65fdc71ebba387188974034ba1113002.1.jpg" /> <meta property="og:video" content="https://static-hw.xvideos.com/swf/xv-player.swf?id_video=38180533" /> <meta property="og:video:type" content="application/x-shockwave-flash" /> <meta property="og:video:width" content="510" /> <meta property="og:video:height" content="400" /> <link rel="search" type="application/opensearchdescription+xml" title="XVideos" href="/rss/rss.xml"> <meta name="format-detection" content="telephone=no"> <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> <link rel="manifest" href="/manifest.json"> <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#de2600"> <meta name="theme-color" content="#000000"> <link rel="stylesheet" href="https://static-hw.xvideos.com/v-3839f2d896a/v3/css/default/main.css"> <script>if(!window.xv){window.xv={};}window.xv.conf={"sitename":"default","domains":{"slave":"https://www.xvideos.com","static":"https://static-hw.xvideos.com","premium":"https://www.xvideos.red"},"dyn":{"pagefilter":"straight","ref":"N","id":38180533,"i18nvers":{"front":{"en":"e6a78fc6499"},"xvplayer":{"en":"a4163c6c777"}},"nb_thumbs_cols":[],"premium_domain":"https:\/\/www.xvideos.red","has_premium":true,"is_premium":false,"disp_removeads":false,"gentime":1534013895,"ip":"107.12.224.13","country":"US","lazyloading":false,"is_mobile":true,"is_tablet":true,"browser":"Android Browser","chat":{"enabled":true,"firebase":{"apiKey":"AIzaSyBdA3GTILPUH3e5yaWr0uSlhhnqf-92dA8","authDomain":"xv-chat.firebaseapp.com","databaseURL":"https:\/\/xv-chat.firebaseio.com","projectId":"xv-chat","storageBucket":"xv-chat.appspot.com","messagingSenderId":"241416482003"},"server_master":"chat-private-master.xvideos.com","cookie_name":"HEXAVID_LOGIN","prefs":[],"nb_friends":0},"forcedcountry":false,"vp":{"allowed":false},"ls":{"buttons":[{"name":"nb_vids_per_row"}]},"login_info":{"is_logged":false,"is_premium":false,"profile":false,"iptrusted":-1,"recaptchakey":"6LeEkhMTAAAAAFrfG3CxNAT9JiM1oLIkyU7UuYYQ","invrecaptchakey":"6LcM6ScUAAAAAHFxb4HmgMyNHrfi61bf_USRJ4uo"},"locale":"en","countries":[["AF","Afghanistan"],["AL","Albania"],["DZ","Algeria"],["AS","American Samoa"],["AD","Andorra"],["AO","Angola"],["AI","Anguilla"],["AQ","Antarctica"],["AG","Antigua and Barbuda"],["AR","Argentina"],["AM","Armenia"],["AW","Aruba"],["AU","Australia"],["AT","Austria"],["AZ","Azerbaijan"],["BS","Bahamas"],["BH","Bahrain"],["BD","Bangladesh"],["BB","Barbados"],["BY","Belarus"],["BE","Belgium"],["BZ","Belize"],["BJ","Benin"],["BM","Bermuda"],["BT","Bhutan"],["BO","Bolivia"],["BA","Bosnia and Herzegovina"],["BW","Botswana"],["BR","Brazil"],["BN","Brunei Darussalam"],["BG","Bulgaria"],["BF","Burkina Faso"],["BI","Burundi"],["KH","Cambodia"],["CM","Cameroon"],["CA","Canada"],["CV","Cape Verde"],["KY","Cayman Islands"],["CF","Central African Republic"],["TD","Chad"],["CL","Chile"],["CN","China"],["CX","Christmas Island"],["CC","Cocos (Keeling) Islands"],["CO","Colombia"],["KM","Comoros"],["CG","Congo"],["CD","Congo, The Democratic Republic of the"],["CK","Cook Islands"],["CR","Costa Rica"],["CI","Cote d'Ivoire"],["HR","Croatia"],["CU","Cuba"],["CY","Cyprus"],["CZ","Czech Republic"],["DK","Denmark"],["DJ","Djibouti"],["DM","Dominica"],["DO","Dominican Republic"],["EC","Ecuador"],["EG","Egypt"],["SV","El Salvador"],["GQ","Equatorial Guinea"],["ER","Eritrea"],["EE","Estonia"],["ET","Ethiopia"],["FK","Falkland Islands (Malvinas)"],["FO","Faroe Islands"],["FJ","Fiji"],["FI","Finland"],["FR","France"],["GF","French Guiana"],["PF","French Polynesia"],["GA","Gabon"],["GM","Gambia"],["GE","Georgia"],["DE","Germany"],["GH","Ghana"],["GI","Gibraltar"],["GR","Greece"],["GL","Greenland"],["GD","Grenada"],["GP","Guadeloupe"],["GU","Guam"],["GT","Guatemala"],["GG","Guernsey"],["GN","Guinea"],["GW","Guinea-Bissau"],["GY","Guyana"],["HT","Haiti"],["VA","Holy See (Vatican City State)"],["HN","Honduras"],["HK","Hong Kong"],["HU","Hungary"],["IS","Iceland"],["IN","India"],["ID","Indonesia"],["IR","Iran, Islamic Republic of"],["IQ","Iraq"],["IE","Ireland"],["IM","Isle of Man"],["IL","Israel"],["IT","Italy"],["JM","Jamaica"],["JP","Japan"],["JE","Jersey"],["JO","Jordan"],["KZ","Kazakhstan"],["KE","Kenya"],["KI","Kiribati"],["KR","Korea"],["KP","Korea, Democratic People's Republic of"],["KW","Kuwait"],["KG","Kyrgyzstan"],["LA","Lao People's Democratic Republic"],["LV","Latvia"],["LB","Lebanon"],["LS","Lesotho"],["LR","Liberia"],["LY","Libya"],["LI","Liechtenstein"],["LT","Lithuania"],["LU","Luxembourg"],["MO","Macao"],["MK","Macedonia"],["MG","Madagascar"],["MW","Malawi"],["MY","Malaysia"],["MV","Maldives"],["ML","Mali"],["MT","Malta"],["MH","Marshall Islands"],["MQ","Martinique"],["MR","Mauritania"],["MU","Mauritius"],["YT","Mayotte"],["MX","Mexico"],["FM","Micronesia, Federated States of"],["MD","Moldova, Republic of"],["MC","Monaco"],["MN","Mongolia"],["ME","Montenegro"],["MS","Montserrat"],["MA","Morocco"],["MZ","Mozambique"],["MM","Myanmar"],["NA","Namibia"],["NR","Nauru"],["NP","Nepal"],["NL","Netherlands"],["AN","Netherlands Antilles"],["NC","New Caledonia"],["NZ","New Zealand"],["NI","Nicaragua"],["NE","Niger"],["NG","Nigeria"],["NU","Niue"],["MP","Northern Mariana Islands"],["NO","Norway"],["OM","Oman"],["PK","Pakistan"],["PW","Palau"],["PS","Palestinian Territory"],["PA","Panama"],["PG","Papua New Guinea"],["PY","Paraguay"],["PE","Peru"],["PH","Philippines"],["PL","Poland"],["PT","Portugal"],["PR","Puerto Rico"],["QA","Qatar"],["RE","Reunion"],["RO","Romania"],["RU","Russia"],["RW","Rwanda"],["SH","Saint Helena"],["KN","Saint Kitts and Nevis"],["LC","Saint Lucia"],["PM","Saint Pierre and Miquelon"],["VC","Saint Vincent and the Grenadines"],["WS","Samoa"],["SM","San Marino"],["ST","Sao Tome and Principe"],["A2","Satellite"],["SA","Saudi Arabia"],["SN","Senegal"],["RS","Serbia"],["SC","Seychelles"],["SL","Sierra Leone"],["SG","Singapore"],["SK","Slovakia"],["SI","Slovenia"],["SB","Solomon Islands"],["SO","Somalia"],["ZA","South Africa"],["SS","South Sudan"],["ES","Spain"],["LK","Sri Lanka"],["SD","Sudan"],["SR","Suriname"],["SZ","Swaziland"],["SE","Sweden"],["CH","Switzerland"],["SY","Syrian Arab Republic"],["TW","Taiwan"],["TJ","Tajikistan"],["TZ","Tanzania, United Republic of"],["TH","Thailand"],["TL","Timor-Leste"],["TG","Togo"],["TK","Tokelau"],["TO","Tonga"],["TT","Trinidad and Tobago"],["TN","Tunisia"],["TR","Turkey"],["TM","Turkmenistan"],["TC","Turks and Caicos Islands"],["TV","Tuvalu"],["UG","Uganda"],["UA","Ukraine"],["AE","United Arab Emirates"],["GB","United Kingdom"],["UY","Uruguay"],["US","USA"],["UZ","Uzbekistan"],["VU","Vanuatu"],["VE","Venezuela"],["VN","Vietnam"],["VG","Virgin Islands, British"],["VI","Virgin Islands, U.S."],["WF","Wallis and Futuna"],["EH","Western Sahara"],["YE","Yemen"],["ZM","Zambia"],["ZW","Zimbabwe"]],"ads":{"site":"xvideos","categories":"milf,cumshot,blonde,sexy,mature,solo_-_masturbation","tracker":"xvideos38180533","banners":[{"type":"square","nb_ban":2,"div_id":"video-ad"},{"type":"footer","nb_ban":1,"div_id":"ad-footer"}]}},"data":{"action":"video","other_locales":{"cs":{"name":"Czech","translated":"\u010ce\u0161tina","country":"CZ","rtl":false},"de":{"name":"German","translated":"Deutsch","country":"DE","rtl":false},"es":{"name":"Spanish","translated":"Espa\u00f1ol","country":"ES","rtl":false},"fr":{"name":"French","translated":"Fran\u00e7ais","country":"FR","rtl":false},"it":{"name":"Italian","translated":"Italiano","country":"IT","rtl":false},"hu":{"name":"Hungarian","translated":"Magyar","country":"HU","rtl":false},"nl":{"name":"Dutch","translated":"Nederlandse","country":"NL","rtl":false},"no":{"name":"Norwegian","translated":"Norsk","country":"NO","rtl":false},"pl":{"name":"Polish","translated":"Polskie","country":"PL","rtl":false},"pt":{"name":"Portugese","translated":"Portugu\u00eas","country":"PT","rtl":false},"ro":{"name":"Romanian","translated":"Rom\u00e2n\u0103","country":"RO","rtl":false},"sv":{"name":"Swedish","translated":"Svenska","country":"SE","rtl":false},"vi-VN":{"name":"Vietnamese","translated":"Ti\u1ebfng Vi\u1ec7t","country":"VN","rtl":false},"tr":{"name":"Turkish","translated":"T\u00fcrk","country":"TR","rtl":false},"el":{"name":"Greek","translated":"\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ae","country":"GR","rtl":false},"he":{"name":"Hebrew","translated":"\u05e2\u05d1\u05e8\u05d9\u05ea","country":"IL","rtl":true},"ar":{"name":"Arabic","translated":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629","country":"EG","rtl":true},"hi":{"name":"Hindi","translated":"\u0939\u093f\u0928\u094d\u0926\u0940","country":"IN","rtl":false},"zh":{"name":"Chinese","translated":"\u4e2d\u6587","country":"CN","rtl":false},"ja":{"name":"Japenese","translated":"\u65e5\u672c\u8a9e","country":"JP","rtl":false}},"show_disclaimer":false,"sponsors":[],"related_keywords":["mom","it","every","day","needs","solo","deutsche-schlampe","deutsche-pornos","dirty-tina","abspritzen","orgasm","milf","toys","mature","sexy"],"id_video":38180533,"uploader_id":250613369,"uploader":"dirty_tina","uploader_url":"\/pornstar-channels\/dirty_tina","vote_urls":{"good":"/video-vote/38180533/GOOD/1000111000000001110100011101101158428/","bad":"/video-vote/38180533/BAD/0011101100000011001011111101010035763/"},"nb_comments":12,"commentscsrf":"b173464779849068htiqVe1OVu0d98QPbnTEf75_1WLi4BqE7to_5uLsMDBIr9mCB815MQcJc2dAFtOHO5AxX0McM3mJvq84c_NaUw=="}};</script> <script src="https://static-hw.xvideos.com/v-fc89b9f942d/v3/js/skins/min/default.header.static.js"></script> </head> <body class="video-page"> <div id="page" class="video-page"> <div id="header"> <header> <div class="stripe white-stripe"> <h1 class="hidden">XVIDEOS.COM</h1> <div class="header-icons" id="header-mobile-right"> <a href="#" id="mobile-login-btn" class="btn btn-default mobile-show-inline-block"><span class="icon user logo-bg mobile-show-inline-block">&nbsp;</span><span class="mobile-hide">ACCOUNT</span></a><a href="/account/create" class="btn btn-default menu-login-acct mobile-hide" data-mode="signup">Join for FREE</a> <a href="/account" class="btn btn-login menu-login-acct mobile-hide" data-mode="signin">Log in</a> <a id="language-switcher"><span class="flag flag-us" title="English"></span></a> <a href="/switch-theme" class="icon theme-dark" id="theme-switcher-btn" title="Switch to dark theme"></a> </div> <a href="#" class="animated-hamburger" id="header-menu-toggle" title="Toggle menu"> <span class="an-h-1"></span> <span class="an-h-2"></span> <span class="an-h-3"></span> <span class="an-h-4"></span> </a> <a href="#" class="icon-f icf-search mobile-show" id="header-mobile-search-toggle" title="Toggle search"></a> <a href="/" class="logo not-premium" id="site-logo-link"> <svg id="site-logo-svg" height="36" width="144"> <image xlink:href="https://static-hw.xvideos.com/v3/img/skins/default/xvideos.com.svg" src="https://static-hw.xvideos.com/v3/img/skins/default/xvideos.com.png" title="XVideos Home" height="36" width="144" class="no-blur" id="site-logo"/> </svg> </a> <form action="/" id="xv-search-form" class="mobile-hide"> <div class="cont"> <div class="input-group"> <input type="text" name="k" value="" class="search-input form-control" maxlength="2048" placeholder="Search 8,040,437 videos" /><span class="input-group-btn"><button type="submit" title="Search" class="search-submit btn btn-default"><span class="icon-f icf-search"></span><span class="mobile-show-inline-block">Search</span></button></span> </div> </div> </form> <h2 class="mobile-hide"> <span class="alt"><span class="text-danger">BIGGER</span> and <span class="text-danger">BETTER</span> than the others... <span class="text-danger">X</span><strong>VIDEOS.COM</strong></span></h2> </div> <h2 id="mobile-slogan" class="mobile-show"> <span class="alt"><span class="text-danger">BIGGER</span> and <span class="text-danger">BETTER</span> than the others... <span class="text-danger">X</span><strong>VIDEOS.COM</strong></span> </h2> </header> </div> <div id="nav" class=""> <nav> <div class="main-categories ordered-label-list"><ul><li class="mobile-show"><a class="btn btn-default label main" id="main-cat-sub-list-btn">Categories</a></li> <li class="mobile-hide"><a class="country-switch btn btn-default main" data-country="us">USA <span class="flag-small flag-us"></span> &#9660;</a></li> <li class="mobile-show" id="version-country-switch-li"><a id="version-country-switch-a" class="mobile-country-switch btn btn-default" data-country="us">Version : <span class="flag-small flag-us"></span> USA</a></li> <li><a class="btn btn-default label" href="/best">Best Videos</a></li> <li><a class="btn btn-default label" href="/pornstars-index">Pornstars</a></li> <li><a class="btn btn-default label" href="/channels-index">Channels</a></li> <li><a class="btn btn-default label" href="/verified/videos">100% Verified</a></li> <li><a class="btn btn-default label" href="/profileslist">Profiles</a></li> <li class="sub-list" id="main-cat-sub-list"><ul><li class="dyn"><a href="/lang" class="btn btn-default"><span class="icon world"></span> Porn in your language</a></li> <li class="dyn topterm topterm-5"><a class="btn btn-default" href="/?k=3d&top">3d</a></li> <li class="dyn topcat topcat-35"><a class="btn btn-default" href="/c/Amateur-65">Amateur</a></li> <li class="dyn topcat topcat-27"><a class="btn btn-default" href="/c/Anal-12">Anal</a></li> <li class="dyn topcat topcat-16"><a class="btn btn-default" href="/c/Arab-159">Arab</a></li> <li class="dyn topcat topcat-32"><a class="btn btn-default" href="/c/Asian+Woman-32">Asian</a></li> <li class="dyn topcat topcat-15"><a class="btn btn-default" href="/c/ASMR-229">ASMR</a></li> <li class="dyn topcat topcat-22"><a class="btn btn-default" href="/c/Ass-14">Ass</a></li> <li class="dyn topterm topterm-13"><a class="btn btn-default" href="/?k=aunt&top">Aunt</a></li> <li class="dyn topcat topcat-33"><a class="btn btn-default" href="/c/bbw-51">BBW</a></li> <li class="dyn topcat topcat-14"><a class="btn btn-default" href="/c/Bi+Sexual-62">Bi</a></li> <li class="dyn topcat topcat-34"><a class="btn btn-default" href="/c/Big+Ass-24">Big Ass</a></li> <li class="dyn topcat topcat-24"><a class="btn btn-default" href="/c/Big+Cock-34">Big Cock</a></li> <li class="dyn topcat topcat-31"><a class="btn btn-default" href="/c/Big+Tits-23">Big Tits</a></li> <li class="dyn topcat topcat-36"><a class="btn btn-default" href="/c/Black+Woman-30">Black</a></li> <li class="dyn topterm topterm-12"><a class="btn btn-default" href="/?k=blackmail&top">Blackmail</a></li> <li class="dyn topcat topcat-18"><a class="btn btn-default" href="/c/Blonde-20">Blonde</a></li> <li class="dyn topcat topcat-19"><a class="btn btn-default" href="/c/Blowjob-15">Blowjob</a></li> <li class="dyn topcat topcat-9"><a class="btn btn-default" href="/c/Brunette-25">Brunette</a></li> <li class="dyn topcat topcat-7"><a class="btn btn-default" href="/c/Cam+Porn-58">Cam Porn</a></li> <li class="dyn topterm topterm-3"><a class="btn btn-default" href="/?k=casting&top">Casting</a></li> <li class="dyn topterm topterm-16"><a class="btn btn-default" href="/?k=caught&top">Caught</a></li> <li class="dyn topterm topterm-10"><a class="btn btn-default" href="/?k=cheating&top">Cheating</a></li> <li class="dyn topterm topterm-9"><a class="btn btn-default" href="/?k=chubby&top">Chubby</a></li> <li class="dyn topterm topterm-20"><a class="btn btn-default" href="/?k=college&top">College</a></li> <li class="dyn topterm topterm-4"><a class="btn btn-default" href="/?k=compilation&top">Compilation</a></li> <li class="dyn topcat topcat-23"><a class="btn btn-default" href="/c/Creampie-40">Creampie</a></li> <li class="dyn topcat topcat-10"><a class="btn btn-default" href="/c/Cumshot-18">Cumshot</a></li> <li class="dyn topterm topterm-14"><a class="btn btn-default" href="/?k=drunk&top">Drunk</a></li> <li class="dyn topcat topcat-2"><a class="btn btn-default" href="/c/Fisting-165">Fisting</a></li> <li class="dyn topcat topcat-30"><a class="btn btn-default" href="/c/Fucked+Up+Family-81">Fucked Up Family</a></li> <li class="dyn topcat topcat-17"><a class="btn btn-default" href="/c/Gangbang-69">Gangbang</a></li> <li class="dyn topcat topcat-3"><a class="btn btn-default" href="/c/Gapes-167">Gapes</a></li> <li class="dyn "><a class="btn btn-default" href="/gay"><span class="icon rainbow"></span> Gay</a></li> <li class="dyn topterm topterm-17"><a class="btn btn-default" href="/?k=hardcore&top">Hardcore</a></li> <li class="dyn topcat topcat-13"><a class="btn btn-default" href="/c/Indian-89">Indian</a></li> <li class="dyn topcat topcat-21"><a class="btn btn-default" href="/c/Interracial-27">Interracial</a></li> <li class="dyn topcat topcat-28"><a class="btn btn-default" href="/c/Latina-16">Latina</a></li> <li class="dyn topcat topcat-29"><a class="btn btn-default" href="/c/Lesbian-26">Lesbian</a></li> <li class="dyn topcat topcat-6"><a class="btn btn-default" href="/c/Lingerie-83">Lingerie</a></li> <li class="dyn topterm topterm-15"><a class="btn btn-default" href="/?k=maid&top">Maid</a></li> <li class="dyn topcat topcat-20"><a class="btn btn-default" href="/c/Mature-38">Mature</a></li> <li class="dyn topterm topterm-19"><a class="btn btn-default" href="/?k=mexicana&top">Mexicana</a></li> <li class="dyn topcat topcat-26"><a class="btn btn-default" href="/c/Milf-19">Milf</a></li> <li class="dyn topcat topcat-4"><a class="btn btn-default" href="/c/Oiled-22">Oiled</a></li> <li class="dyn topterm topterm-7"><a class="btn btn-default" href="/?k=omegle&top">Omegle</a></li> <li class="dyn topterm topterm-18"><a class="btn btn-default" href="/?k=orgasm&top">Orgasm</a></li> <li class="dyn topterm topterm-1"><a class="btn btn-default" href="/?k=pov&top">Pov</a></li> <li class="dyn topcat topcat-11"><a class="btn btn-default" href="/c/Redhead-31">Redhead</a></li> <li class="dyn topcat topcat-0"><a class="btn btn-default" href="/shemale"><span class="icon shemale"></span> Shemale</a></li> <li class="dyn topterm topterm-6"><a class="btn btn-default" href="/?k=sleeping&top">Sleeping</a></li> <li class="dyn topcat topcat-8"><a class="btn btn-default" href="/c/Solo+%26+Masturbation-33">Solo</a></li> <li class="dyn topcat topcat-12"><a class="btn btn-default" href="/c/Squirting-56">Squirting</a></li> <li class="dyn topcat topcat-5"><a class="btn btn-default" href="/c/Stockings-28">Stockings</a></li> <li class="dyn topterm topterm-11"><a class="btn btn-default" href="/?k=teacher&top">Teacher</a></li> <li class="dyn topcat topcat-25"><a class="btn btn-default" href="/c/Teen-13">Teen</a></li> <li class="dyn topterm topterm-2"><a class="btn btn-default" href="/?k=thot&top">Thot</a></li> <li class="dyn topterm topterm-8"><a class="btn btn-default" href="/?k=wife&top">Wife</a></li></ul></li> <li><a class="btn btn-default" href="/tags">All tags</a></li> <li class="mobile-hide"><a class="view-more btn btn-default">+</a></li></ul></div> <a id="nav-language-switcher" class="btn main mobile-show">Language : <span class="flag-small flag-us"></span> English</a> <div id="nav_subs" class="mobile-show"></div> </nav> </div> <div id="mobile-login-menu" class="hidden"><a href="#" class="btn btn-default menu-login-acct" data-mode="signup">Join for FREE</a><a href="#" class="btn btn-default menu-login-acct" data-mode="signin">Log in</a><a href="/my-subs/videos" class="btn btn-default my-subs-nav-link">My subscriptions</a><a href="/videos-i-like" class="btn btn-default">Videos I like</a></div> <a href="#" id="x-messages-btn" class="hidden"> <span class="ic"> <span class="icon-f icf-info-circle" title="Messages from Xvideos.com"></span> <span class="icon-f icf-close" title="Close"></span> </span> <span class="badge">0</span> </a> <div id="main"> <!-- dispo - Sat, 04 Aug 18 01:40:33 +0000 Can exist (not in array). Loaded ! Video exists and loaded. Video exists and OK. --> <div id="ad-header-mobile-contener"></div> <h2 class="page-title">Mom needs it every day <span class="duration">11 min</span> <span class="video-hd-mark">HD+</span></h2> <div class="video-metadata video-tags-list ordered-label-list cropped"> <ul> <li> <a href="/pornstar-channels/dirty_tina" class="btn btn-default label main uploader-tag hover-name"> <span class="name">DirtyTina</span> <span class="icon-f icf-check-circle verified" title="Verified uploader"></span> <span class="user-subscribe" data-user-id="250613369" data-user-profile="dirty_tina"> <span class="count">10k</span> </span> </a> </li> <li><a href="/verified/videos" class="btn btn-default">verified profile</a></li> <li><a href="/tags/cumshot" class="btn btn-default">cumshot</a></li> <li><a href="/tags/sex" class="btn btn-default">sex</a></li> <li><a href="/tags/hardcore" class="btn btn-default">hardcore</a></li> <li><a href="/tags/blonde" class="btn btn-default">blonde</a></li> <li><a href="/tags/sexy" class="btn btn-default">sexy</a></li> <li><a href="/tags/milf" class="btn btn-default">milf</a></li> <li><a href="/tags/mature" class="btn btn-default">mature</a></li> <li><a href="/tags/toys" class="btn btn-default">toys</a></li> <li><a href="/tags/solo" class="btn btn-default">solo</a></li> <li><a href="/tags/mom" class="btn btn-default">mom</a></li> <li><a href="/tags/orgasm" class="btn btn-default">orgasm</a></li> <li><a href="/tags/abspritzen" class="btn btn-default">abspritzen</a></li> <li><a href="/tags/dirty-tina" class="btn btn-default">dirty-tina</a></li> <li><a href="/tags/deutsche-pornos" class="btn btn-default">deutsche-pornos</a></li> <li><a href="/tags/deutsche-schlampe" class="btn btn-default">deutsche-schlampe</a></li> <li><a href="/tags/deutsche-mutter" class="btn btn-default">deutsche-mutter</a></li> <li class="view-more-li"><a href="#" class="view-more btn btn-default" title="more tags">+</a></li> </ul> </div> <div id="content"> <div id="video-ad" class="mobile-hide"></div> <div id="video-player-bg"> <script>var video_related=[{"id":38155301,"u":"\/video38155301\/fuck_my_ass_and_my_pussy","i":"https:\/\/img-egc.xvideos-cdn.com\/videos\/thumbs169\/12\/8b\/ba\/128bba269dc7cf0d78fe5a620e5551b3\/128bba269dc7cf0d78fe5a620e5551b3.18.jpg","tf":"Fuck my Ass and my Pussy","t":"Fuck my Ass and my Pussy","d":"11 min","r":"100%","n":"63.5k","v":1,"h":1,"hp":1,"p":"dirty_tina","pn":"DirtyTina","pu":"\/pornstar-channels\/dirty_tina"},{"id":37447021,"u":"\/video37447021\/mega_cumshot_finale_auf_die_titten_und_die_pussy","i":"https:\/\/img-l3.xvideos-cdn.com\/videos\/thumbs169\/b1\/fc\/19\/b1fc197e13e0949dbc7fed1c91a5f12a\/b1fc197e13e0949dbc7fed1c91a5f12a.29.jpg","tf":"Mega Cumshot Finale auf die Titten und die Pussy","t":"Mega Cumshot Finale auf die Titten und die Pussy","d":"11 min","r":"100%","n":"105.9k","v":1,"h":1,"hp":1,"p":"dirty_tina","pn":"DirtyTina","pu":"\/pornstar-channels\/dirty_tina"},{"id":3626878,"u":"\/video3626878\/mom_blonde_milf_needs_good_fucking","i":"https:\/\/images-llnw.xvideos-cdn.com\/videos\/thumbs169\/e0\/2f\/c6\/e02fc697b5788721de741d4a04c26d40\/e02fc697b5788721de741d4a04c26d40.6.jpg","tf":"MOM Blonde milf needs good fucking","t":"MOM Blonde milf needs good fucking","d":"12 min","r":"99%","n":"2.2M","v":0,"h":0,"hp":0,"p":"sexy-hub-1","pn":"Sexy Hub","pu":"\/channels\/sexy-hub-1"},{"id":33732543,"u":"\/video33732543\/spycam_i_caught_mom_masturbate_every_day_","i":"https:\/\/img-egc.xvideos-cdn.com\/videos\/thumbs169\/ed\/91\/15\/ed9115703aa78e84fd32e4054994d0e4\/ed9115703aa78e84fd32e4054994d0e4.29.jpg","tf":"Spycam, I caught mom masturbate every day!","t":"Spycam, I caught mom masturbate every day!","d":"5 min","r":"100%","n":"60.4k","v":0,"h":1,"hp":0,"p":"bestcamgirlz","pn":"Bestcamgirlz","pu":"\/profiles\/bestcamgirlz"},{"id":3221720,"u":"\/video3221720\/mom_his_beautiful_milf_needs_to_be_fucked","i":"https:\/\/img-egc.xvideos-cdn.com\/videos\/thumbs169\/75\/71\/1e\/75711e4749379c4a7b35f90f7720b0ae\/75711e4749379c4a7b35f90f7720b0ae.2.jpg","tf":"MOM His beautiful MILF needs to be fucked","t":"MOM His beautiful MILF needs to be fucked","d":"12 min","r":"100%","n":"4.5M","v":0,"h":0,"hp":0,"p":"sexy-hub-1","pn":"Sexy Hub","pu":"\/channels\/sexy-hub-1"},{"id":10113415,"u":"\/video10113415\/blonde_mature_mom_takes_it_anal","i":"https:\/\/img-hw.xvideos-cdn.com\/videos\/thumbs169\/e0\/56\/7f\/e0567f06dff74ace826db42fb161dc0e\/e0567f06dff74ace826db42fb161dc0e.26.jpg","tf":"Blonde mature mom takes it anal","t":"Blonde mature mom takes it anal","d":"6 min","r":"100%","n":"600.5k","v":0,"h":0,"hp":0,"p":"allsexpass","pn":"All Sex Pass","pu":"\/channels\/allsexpass"},{"id":4684247,"u":"\/video4684247\/blonde_mature_mom_takes_it_anal","i":"https:\/\/img-egc.xvideos-cdn.com\/videos\/thumbs169\/36\/a8\/f0\/36a8f0dbfdfb5860fbe4b16b5964d503\/36a8f0dbfdfb5860fbe4b16b5964d503.17.jpg","tf":"Blonde mature mom takes it anal","t":"Blonde mature mom takes it anal","d":"37 min","r":"100%","n":"1.4M","v":0,"h":0,"hp":0,"p":"allsexpass","pn":"All Sex Pass","pu":"\/channels\/allsexpass"},{"id":25650907,"u":"\/video25650907\/mature_needs_it_truly_deep","i":"https:\/\/images-llnw.xvideos-cdn.com\/videos\/thumbs169\/26\/f1\/87\/26f187086a303690528c1939000d8454\/26f187086a303690528c1939000d8454.25.jpg","tf":"Mature needs it truly deep","t":"Mature needs it truly deep","d":"5 min","r":"87%","n":"24.4k","v":0,"h":0,"hp":0,"p":"voluptuousdiena1989","pn":"Voluptuousdiena1989","pu":"\/profiles\/voluptuousdiena1989"},{"id":19692005,"u":"\/video19692005\/mature_needs_it_truly_unfathomable","i":"https:\/\/img-l3.xvideos-cdn.com\/videos\/thumbs169\/68\/01\/72\/680172cad231902bef7a3f70d1ce98aa\/680172cad231902bef7a3f70d1ce98aa.8.jpg","tf":"Mature needs it truly unfathomable","t":"Mature needs it truly unfathomable","d":"5 min","r":"95%","n":"89.8k","v":0,"h":1,"hp":0,"p":"michaellarodgers34","pn":"Michaellarodgers34","pu":"\/profiles\/michaellarodgers34"},{"id":20474781,"u":"\/video20474781\/mature_needs_it_actually_unfathomable","i":"https:\/\/img-egc.xvideos-cdn.com\/videos\/thumbs169\/9d\/1e\/a3\/9d1ea3ac275a185196c321a859309f95\/9d1ea3ac275a185196c321a859309f95.7.jpg","tf":"Mature needs it actually unfathomable","t":"Mature needs it actually unfathomable","d":"5 min","r":"82%","n":"15k","v":0,"h":1,"hp":0,"p":"michaellarodgers34","pn":"Michaellarodgers34","pu":"\/profiles\/michaellarodgers34"},{"id":25194017,"u":"\/video25194017\/mature_needs_it_truly_unfathomable","i":"https:\/\/img-l3.xvideos-cdn.com\/videos\/thumbs169\/51\/f9\/4f\/51f94f702748524cdc54efe293d47053\/51f94f702748524cdc54efe293d47053.13.jpg","tf":"Mature needs it truly unfathomable","t":"Mature needs it truly unfathomable","d":"5 min","r":"100%","n":"349.2k","v":1,"h":0,"hp":0,"p":"milfhunter1983","pn":"Milfhunter1983","pu":"\/profiles\/milfhunter1983"},{"id":25361675,"u":"\/video25361675\/mature_needs_it_actually_unfathomable","i":"https:\/\/img-l3.xvideos-cdn.com\/videos\/thumbs169\/33\/5e\/f7\/335ef75cbd151f51f92275d4127198aa\/335ef75cbd151f51f92275d4127198aa.13.jpg","tf":"Mature needs it actually unfathomable","t":"Mature needs it actually unfathomable","d":"5 min","r":"100%","n":"40k","v":0,"h":0,"hp":0,"p":"milfhunter1983","pn":"Milfhunter1983","pu":"\/profiles\/milfhunter1983"},{"id":20975997,"u":"\/video20975997\/mature_needs_it_actually_unfathomable","i":"https:\/\/img-egc.xvideos-cdn.com\/videos\/thumbs169\/04\/ad\/71\/04ad710078a428d530067d7ece3e1e6a\/04ad710078a428d530067d7ece3e1e6a.2.jpg","tf":"Mature needs it actually unfathomable","t":"Mature needs it actually unfathomable","d":"5 min","r":"87%","n":"47.4k","v":0,"h":1,"hp":0,"p":"michaellarodgers34","pn":"Michaellarodgers34","pu":"\/profiles\/michaellarodgers34"},{"id":21784965,"u":"\/video21784965\/mature_needs_it_truly_deep","i":"https:\/\/img-egc.xvideos-cdn.com\/videos\/thumbs169\/37\/37\/80\/373780acb9d6834af999761c145d666c\/373780acb9d6834af999761c145d666c.11.jpg","tf":"Mature needs it truly deep","t":"Mature needs it truly deep","d":"5 min","r":"99%","n":"74.4k","v":0,"h":1,"hp":0,"p":"michaellarodgers34","pn":"Michaellarodgers34","pu":"\/profiles\/michaellarodgers34"},{"id":27647007,"cu":"\/video27647007\/THUMBNUM\/mature_pussy_needs_sexy_banging","u":"\/video27647007\/mature_pussy_needs_sexy_banging","i":"https:\/\/img-egc.xvideos-cdn.com\/videos\/thumbs169\/e8\/9c\/ea\/e89ceace204c31ebf7ab1f3402a442d5\/e89ceace204c31ebf7ab1f3402a442d5.15.jpg","tf":"Mature pussy needs sexy banging","t":"Mature pussy needs sexy banging","d":"5 min","r":"81%","n":"4.4k","v":0,"h":1,"hp":0,"p":"voluptuousdiena1989","pn":"Voluptuousdiena1989","pu":"\/profiles\/voluptuousdiena1989"},{"id":10496692,"u":"\/video10496692\/mom_gives_her_hairy_pussy_the_attention_it_needs","i":"https:\/\/img-l3.xvideos-cdn.com\/videos\/thumbs169\/07\/22\/80\/072280a7d6190e7b8c82ff92dae32577\/072280a7d6190e7b8c82ff92dae32577.9.jpg","tf":"Mom gives her hairy pussy the attention it needs","t":"Mom gives her hairy pussy the attention it needs","d":"6 min","r":"100%","n":"116.8k","v":0,"h":1,"hp":0,"p":"olderwomanfun","pn":"Older Woman Fun","pu":"\/channels\/olderwomanfun"},{"id":1546224,"u":"\/video1546224\/marierocks_50_plus_milf_-_cum_all_day","i":"https:\/\/img-egc.xvideos-cdn.com\/videos\/thumbs169\/ad\/15\/6c\/ad156c35e3360da935481cca8dcf7feb\/ad156c35e3360da935481cca8dcf7feb.13.jpg","tf":"MarieRocks 50 Plus MILF - Cum All Day","t":"MarieRocks 50 Plus MILF - Cum All Day","d":"1 min 33 sec","r":"48%","n":"87.2k","v":0,"h":0,"hp":0,"p":false},{"id":26319183,"u":"\/video26319183\/aged_needs_it_truly_deep","i":"https:\/\/images-llnw.xvideos-cdn.com\/videos\/thumbs169\/eb\/92\/fa\/eb92fad023c3ab32847d6273486b1674\/eb92fad023c3ab32847d6273486b1674.16.jpg","tf":"Aged needs it truly deep","t":"Aged needs it truly deep","d":"5 min","r":"81%","n":"13.6k","v":0,"h":1,"hp":0,"p":"voluptuousdiena1989","pn":"Voluptuousdiena1989","pu":"\/profiles\/voluptuousdiena1989"},{"id":4547393,"u":"\/video4547393\/mom_blonde_milf_makes_love_to_her_man","i":"https:\/\/img-l3.xvideos-cdn.com\/videos\/thumbs169\/31\/f3\/49\/31f349bacc1e2e4ef583f90519da6598\/31f349bacc1e2e4ef583f90519da6598.1.jpg","tf":"MOM Blonde MILF makes love to her man","t":"MOM Blonde MILF makes love to her man","d":"12 min","r":"98%","n":"3.1M","v":0,"h":1,"hp":0,"p":"sexy-hub-1","pn":"Sexy Hub","pu":"\/channels\/sexy-hub-1"},{"id":37437623,"u":"\/video37437623\/puremature_family_secret_crush_with_step_mom_milf","i":"https:\/\/img-l3.xvideos-cdn.com\/videos\/thumbs169\/cb\/23\/38\/cb2338c36e5b7223f1ec70f2975b0bcc\/cb2338c36e5b7223f1ec70f2975b0bcc.2.jpg","tf":"PUREMATURE Family secret crush with step mom MILF","t":"PUREMATURE Family secret crush with step mom MILF","d":"10 min","r":"100%","n":"572.7k","v":0,"h":1,"hp":0,"p":"puremature","pn":"Pure Mature","pu":"\/channels\/puremature"},{"id":28888441,"u":"\/video28888441\/british_milf_fiona_gives_her_fanny_the_attention_it_needs","i":"https:\/\/images-llnw.xvideos-cdn.com\/videos\/thumbs169\/10\/16\/b0\/1016b037bde51f81e562a61bcaa4dfae\/1016b037bde51f81e562a61bcaa4dfae.24.jpg","tf":"British milf Fiona gives her fanny the attention it needs","t":"British milf Fiona gives her fanny the attentio...","d":"6 min","r":"100%","n":"86.1k","v":0,"h":1,"hp":0,"p":"olderwomanfun","pn":"Older Woman Fun","pu":"\/channels\/olderwomanfun"},{"id":23914690,"u":"\/video23914690\/older_needs_it_really_unfathomable","i":"https:\/\/img-egc.xvideos-cdn.com\/videos\/thumbs169\/f7\/cb\/2d\/f7cb2d7e77bd9b2bf2f2f22d3495c700\/f7cb2d7e77bd9b2bf2f2f22d3495c700.29.jpg","tf":"Older needs it really unfathomable","t":"Older needs it really unfathomable","d":"5 min","r":"89%","n":"52k","v":0,"h":1,"hp":0,"p":"milfhunter1983","pn":"Milfhunter1983","pu":"\/profiles\/milfhunter1983"},{"id":20047455,"u":"\/video20047455\/older_needs_it_really_deep","i":"https:\/\/img-l3.xvideos-cdn.com\/videos\/thumbs169\/9a\/b2\/7b\/9ab27b7bc895bc48975e9f1400457ad2\/9ab27b7bc895bc48975e9f1400457ad2.14.jpg","tf":"Older needs it really deep","t":"Older needs it really deep","d":"5 min","r":"100%","n":"119.4k","v":0,"h":1,"hp":0,"p":"michaellarodgers34","pn":"Michaellarodgers34","pu":"\/profiles\/michaellarodgers34"},{"id":32724131,"cu":"\/video32724131\/THUMBNUM\/blonde_mom_tests_out_vibrators_one_gets_her_wet","u":"\/video32724131\/blonde_mom_tests_out_vibrators_one_gets_her_wet","i":"https:\/\/img-egc.xvideos-cdn.com\/videos\/thumbs169\/f2\/3c\/7e\/f23c7e9ba1ff9ce692cbeb3e4285d928\/f23c7e9ba1ff9ce692cbeb3e4285d928.15.jpg","tf":"Blonde mom tests out vibrators one gets her wet","t":"Blonde mom tests out vibrators one gets her wet","d":"7 min","r":"83%","n":"8k","v":0,"h":0,"hp":0,"p":"amateurcanada","pn":"Amateur Canada","pu":"\/channels\/amateurcanada"},{"id":36935001,"u":"\/video36935001\/american_milf_alby_daor_needs_to_relax_after_a_boring_day","i":"https:\/\/img-egc.xvideos-cdn.com\/videos\/thumbs169\/88\/95\/8b\/88958b780e22bd4ccc184774b637a436\/88958b780e22bd4ccc184774b637a436.24.jpg","tf":"American milf Alby Daor needs to relax after a boring day","t":"American milf Alby Daor needs to relax after a ...","d":"12 min","r":"99%","n":"41.2k","v":0,"h":1,"hp":0,"p":"olderwomanfun","pn":"Older Woman Fun","pu":"\/channels\/olderwomanfun"},{"id":26481163,"u":"\/video26481163\/older_needs_it_really_deep","i":"https:\/\/img-l3.xvideos-cdn.com\/videos\/thumbs169\/cf\/be\/3a\/cfbe3a3c03367de424c70947017896e1\/cfbe3a3c03367de424c70947017896e1.7.jpg","tf":"Older needs it really deep","t":"Older needs it really deep","d":"5 min","r":"82%","n":"21.4k","v":0,"h":1,"hp":0,"p":"voluptuousdiena1989","pn":"Voluptuousdiena1989","pu":"\/profiles\/voluptuousdiena1989"},{"id":36409199,"u":"\/video36409199\/i_whisk_it_in_my_ass_to_mature_french","i":"https:\/\/img-l3.xvideos-cdn.com\/videos\/thumbs169\/19\/0a\/bd\/190abd620d864f00bfea7fc5aa6e9977\/190abd620d864f00bfea7fc5aa6e9977.26.jpg","tf":"I whisk it in my ass to mature French","t":"I whisk it in my ass to mature French","d":"21 min","r":"99%","n":"161.2k","v":0,"h":1,"hp":1,"p":"milfinlove","pn":"Milf In Love","pu":"\/channels\/milfinlove"},{"id":8252993,"u":"\/video8252993\/carla_just_53yo_and_divorced","i":"https:\/\/img-egc.xvideos-cdn.com\/videos\/thumbs169\/ad\/f3\/4b\/adf34ba6a001c31d77c23bab77f5d6a4\/adf34ba6a001c31d77c23bab77f5d6a4.20.jpg","tf":"Carla just 53yo and divorced","t":"Carla just 53yo and divorced","d":"6 min","r":"100%","n":"178.9k","v":0,"h":0,"hp":0,"p":"kimberly79","pn":"Kimberly79","pu":"\/profiles\/kimberly79"},{"id":37406543,"u":"\/video37406543\/lesbian_mom_and_stepdaughter","i":"https:\/\/img-l3.xvideos-cdn.com\/videos\/thumbs169\/08\/c7\/d6\/08c7d640a04df0d547a00e20cbe06e6c\/08c7d640a04df0d547a00e20cbe06e6c.12.jpg","tf":"Lesbian mom and stepdaughter","t":"Lesbian mom and stepdaughter","d":"17 min","r":"97%","n":"15.5k","v":0,"h":0,"hp":0,"p":"milfromusa","pn":"Milf From USA","pu":"\/channels\/milfromusa"},{"id":10306030,"cu":"\/video10306030\/THUMBNUM\/happy_with_his_stepmom","u":"\/video10306030\/happy_with_his_stepmom","i":"https:\/\/img-l3.xvideos-cdn.com\/videos\/thumbs169\/3c\/a7\/f9\/3ca7f9c8aa91d7354c0e1e83afa932c6\/3ca7f9c8aa91d7354c0e1e83afa932c6.15.jpg","tf":"Happy With His Stepmom","t":"Happy With His Stepmom","d":"8 min","r":"85%","n":"6.8k","v":0,"h":0,"hp":0,"p":"virgeed1","pn":"Virgeed1","pu":"\/profiles\/virgeed1"},{"id":36730507,"cu":"\/video36730507\/THUMBNUM\/dirty_laundry_day_with_blonde_cougar","u":"\/video36730507\/dirty_laundry_day_with_blonde_cougar","i":"https:\/\/images-llnw.xvideos-cdn.com\/videos\/thumbs169\/d0\/b5\/e4\/d0b5e4348147e5c8c63f326a3d714342\/d0b5e4348147e5c8c63f326a3d714342.15.jpg","tf":"Dirty Laundry day with Blonde Cougar","t":"Dirty Laundry day with Blonde Cougar","d":"8 min","r":"80%","n":"3.1k","v":0,"h":1,"hp":0,"p":"sexy-miami-girl","pn":"Sexy-miami-girl","pu":"\/profiles\/sexy-miami-girl"},{"id":27461601,"u":"\/video27461601\/older_needs_it_really_unfathomable","i":"https:\/\/images-llnw.xvideos-cdn.com\/videos\/thumbs169\/cb\/10\/b5\/cb10b5d49db62afde21657dd52dd6dac\/cb10b5d49db62afde21657dd52dd6dac.8.jpg","tf":"Older needs it really unfathomable","t":"Older needs it really unfathomable","d":"5 min","r":"84%","n":"12.7k","v":0,"h":1,"hp":0,"p":"voluptuousdiena1989","pn":"Voluptuousdiena1989","pu":"\/profiles\/voluptuousdiena1989"},{"id":4282722,"u":"\/video4282722\/mom_young_stud_fucks_his_milf_lover","i":"https:\/\/img-l3.xvideos-cdn.com\/videos\/thumbs169\/ff\/a9\/b7\/ffa9b76ebb165b0425ad25fc43041aca\/ffa9b76ebb165b0425ad25fc43041aca.1.jpg","tf":"MOM Young stud fucks his MILF lover","t":"MOM Young stud fucks his MILF lover","d":"11 min","r":"100%","n":"2.6M","v":0,"h":1,"hp":0,"p":"sexy-hub-1","pn":"Sexy Hub","pu":"\/channels\/sexy-hub-1"},{"id":36905835,"u":"\/video36905835\/bigger_blonde_milf_fucked_and_cumshot","i":"https:\/\/images-llnw.xvideos-cdn.com\/videos\/thumbs169\/be\/d5\/6f\/bed56f60166db32f7948886f83b093f9\/bed56f60166db32f7948886f83b093f9.3.jpg","tf":"Bigger blonde milf fucked and cumshot","t":"Bigger blonde milf fucked and cumshot","d":"24 min","r":"99%","n":"17.8k","v":0,"h":1,"hp":1,"p":"milfromusa","pn":"Milf From USA","pu":"\/channels\/milfromusa"},{"id":30872567,"cu":"\/video30872567\/THUMBNUM\/sexy_blonde_mom_webcamshow_camjoie.com","u":"\/video30872567\/sexy_blonde_mom_webcamshow_camjoie.com","i":"https:\/\/images-llnw.xvideos-cdn.com\/videos\/thumbs169\/30\/13\/1f\/30131fdfbbbb0dc7d1d55234b8580055\/30131fdfbbbb0dc7d1d55234b8580055.15.jpg","tf":"sexy blonde mom webcamshow CamJoie.com","t":"sexy blonde mom webcamshow CamJoie.com","d":"10 min","r":"84%","n":"7.1k","v":0,"h":0,"hp":0,"p":"camjoiecom","pn":"Camjoiecom","pu":"\/profiles\/camjoiecom"},{"id":27640149,"u":"\/video27640149\/older_needs_it_truly_deep","i":"https:\/\/img-egc.xvideos-cdn.com\/videos\/thumbs169\/39\/8c\/7e\/398c7ee24c610dbd3523f8b615e3c43d\/398c7ee24c610dbd3523f8b615e3c43d.11.jpg","tf":"Older needs it truly deep","t":"Older needs it truly deep","d":"5 min","r":"99%","n":"90.9k","v":0,"h":1,"hp":0,"p":"voluptuousdiena1989","pn":"Voluptuousdiena1989","pu":"\/profiles\/voluptuousdiena1989"},{"id":1096988,"u":"\/video1096988\/mature_amateur_loves_it_anal","i":"https:\/\/img-hw.xvideos-cdn.com\/videos\/thumbs169\/77\/cc\/91\/77cc917a5de852db575215a3e808132f\/77cc917a5de852db575215a3e808132f.11.jpg","tf":"Mature amateur loves it anal","t":"Mature amateur loves it anal","d":"5 min","r":"100%","n":"3.6M","v":0,"h":0,"hp":0,"p":"jimmydiamond","pn":"Old Spunkers","pu":"\/channels\/jimmydiamond"},{"id":38017889,"u":"\/video38017889\/stepmom_gets_her_lucky_step_son","i":"https:\/\/img-egc.xvideos-cdn.com\/videos\/thumbs169\/3a\/47\/2e\/3a472ef931d31357d394909f435609fc\/3a472ef931d31357d394909f435609fc.28.jpg","tf":"Stepmom Gets Her Lucky Step Son","t":"Stepmom Gets Her Lucky Step Son","d":"5 min","r":"81%","n":"2.2k","v":0,"h":1,"hp":0,"p":"aminthepuddingcup","pn":"Aminthepuddingcup","pu":"\/profiles\/aminthepuddingcup"},{"id":20798969,"u":"\/video20798969\/mature_pussy_needs_sexy_banging","i":"https:\/\/img-l3.xvideos-cdn.com\/videos\/thumbs169\/95\/54\/8e\/95548e7078747f5b36a02687ab8c9a64\/95548e7078747f5b36a02687ab8c9a64.22.jpg","tf":"Mature pussy needs sexy banging","t":"Mature pussy needs sexy banging","d":"5 min","r":"96%","n":"29.7k","v":0,"h":1,"hp":0,"p":"michaellarodgers34","pn":"Michaellarodgers34","pu":"\/profiles\/michaellarodgers34"},{"id":25977449,"cu":"\/video25977449\/THUMBNUM\/mature_pussy_needs_sexy_banging","u":"\/video25977449\/mature_pussy_needs_sexy_banging","i":"https:\/\/img-l3.xvideos-cdn.com\/videos\/thumbs169\/ea\/60\/a6\/ea60a680924a640074f6418e1e629d49\/ea60a680924a640074f6418e1e629d49.15.jpg","tf":"Mature pussy needs sexy banging","t":"Mature pussy needs sexy banging","d":"5 min","r":"81%","n":"9.4k","v":0,"h":0,"hp":0,"p":"voluptuousdiena1989","pn":"Voluptuousdiena1989","pu":"\/profiles\/voluptuousdiena1989"}];window.wpn_categories = "milf,cumshot,blonde,sexy,mature,solo_-_masturbation";</script> <div id="html5video" style="line-height: normal; min-height: 300px;"> <div id="html5video_base" style="display: none;"><div style="width: 100%; text-align: center;"><a href="https://vid-egc.xvideos-cdn.com/videos/mp4/6/5/f/xvideos.com_65fdc71ebba387188974034ba1113002.mp4?al9ipOJS9KZQjHOtCzQffrm_p3_or7UbZ1iW4MEGyWe3fnwaDTY6B08wci4jFE-WOIhxd7IQDMtc4L4FOtwNKvS8-5HgmX4t-YtRajLhhJyEMMm6_3UROLBm7-4-7VL_3Tl3dYdqvLYV3DIeBDiyGkgIQTH_73wsR5kcWceNTzw0uX1mdYgF5TMm5iY2l4zEfS5vA99l6V8"><img src="https://img-egc.xvideos-cdn.com/videos/thumbslll/65/fd/c7/65fdc71ebba387188974034ba1113002/65fdc71ebba387188974034ba1113002.8.jpg" style="max-width:100%; height:auto;"></a></div><div style='width: 99%; text-align: center; font-size: 28px; border: 2px #333 solid; padding: 10px; display: block; background: #888;'><div style='font-weight: bold; padding: 3px; border: 1px #000 solid; background: #CCC;'><a href="https://vid-egc.xvideos-cdn.com/videos/3gp/6/5/f/xvideos.com_65fdc71ebba387188974034ba1113002.mp4?vLJJASsW6D5z76PHn3Svl67gczB--HoX4vvMT9Jmm3NvrjmiLmpsWng2IrasUaAiCf7dl42IHN4yMSDCHf5CKz7kVOZ27lrCFHgOD0Ur6sABRzW1oOEswiPGV5JmHBYt3dHnuxB5Uoz2CftvqBzfAeJ9Q4ZUivo73zjcuCQxnOP6Ln9IkDcycZYeTJe8R5Jhej1M-NI34j4">View Low Qual</a></div><div style='font-weight: bold; padding: 3px; border: 1px #000 solid; margin-top: 10px; background: #CCC;'><a href="https://vid-egc.xvideos-cdn.com/videos/mp4/6/5/f/xvideos.com_65fdc71ebba387188974034ba1113002.mp4?al9ipOJS9KZQjHOtCzQffrm_p3_or7UbZ1iW4MEGyWe3fnwaDTY6B08wci4jFE-WOIhxd7IQDMtc4L4FOtwNKvS8-5HgmX4t-YtRajLhhJyEMMm6_3UROLBm7-4-7VL_3Tl3dYdqvLYV3DIeBDiyGkgIQTH_73wsR5kcWceNTzw0uX1mdYgF5TMm5iY2l4zEfS5vA99l6V8">View High Qual</a></div></div><br /><script> document.addEventListener("DOMContentLoaded", function () { function createRequestObject() { var xhr; try { xhr = new XMLHttpRequest(); } catch (e) { xhr = new ActiveXObject("Microsoft.XMLHTTP"); } return xhr; } if (typeof html5player !== 'undefined') { return; } var debug_call = createRequestObject(); debug_call.open('GET', '/html5player/staticplayerloaded/38180533/7', true); debug_call.onreadystatechange = function () { if (debug_call.readyState !== 4) { return; } if (debug_call.status !== 200) { return; } } debug_call.send(); }); </script> </div> </div> <script src="https://static-hw.xvideos.com/v3/js/i18n/xvplayer/english.js"></script> <script src="https://static-hw.xvideos.com/v-65effc35c24/v3/js/skins/min/player.html5.static.js" onerror="xv.console.log(this.src + ' load failed', 'Video page');"></script> <link rel="stylesheet" href="https://static-hw.xvideos.com/v-48f36f194fc/v3/css/player/html5.css"> <script> logged_user = false; var static_id_cdn = 2; var html5player = new HTML5Player('html5video', '38180533'); if (html5player) { html5player.setVideoTitle('Mom needs it every day'); html5player.setSponsors(false); html5player.setVideoUrlLow('https://vid-egc.xvideos-cdn.com/videos/3gp/6/5/f/xvideos.com_65fdc71ebba387188974034ba1113002.mp4?s4RMxrQQjgKEF-mKWT4kWfttuDep6ur6jnKNaxWAcqXJBep4-1nwzgAYPAr-gIuQwGhrTQ8rLlbBilxiUvOV7dAl4nlYdetBtELyLyvb0SpJBPjEaNTHZkhAuC-TQxxxbOp_Kzrl6STt7ELDUflCtXKhVWBR_6WcTuP77vvq58Tytr6_l4mfsN-Z5jqUryaLl3PZpz3t1EA'); html5player.setVideoUrlHigh('https://vid-egc.xvideos-cdn.com/videos/mp4/6/5/f/xvideos.com_65fdc71ebba387188974034ba1113002.mp4?cqUJtLqNAXA4PX9zoixB12vGC1a4kxhiQRiVPORM2cLnXxOvJf8luAtupfMoR8ZbJ9LDg0lMs1k5E2eMrrQec7pRrRPY5yoqJkxGJunYapIgsUJHiyXMSlJToZPJYGfh3KFBfDx2zQwaaunrlDecGsYimPQNL0_tYGOFicFHGesHKMxpEuaQQFv6OKcd351kVdinHYtqXZk'); html5player.setVideoHLS('https://vid-egc.xvideos-cdn.com/videos/hls/65/fd/c7/65fdc71ebba387188974034ba1113002/hls.m3u8?7Qda_77jul_trBZUjKhmrk-lk6aND5A25k-vHE8TPXirPlu2ZSHrCVB8hpzJs_26nzALfEQazC6_-7CJ-xzHLoOLfbcGI-aMPj31LE4EL31UTBf7rppYQd6glACxOfJzanYOqS_TQsIa3jsXr0uIwpnErQ'); html5player.setThumbUrl('https://img-egc.xvideos-cdn.com/videos/thumbslll/65/fd/c7/65fdc71ebba387188974034ba1113002/65fdc71ebba387188974034ba1113002.8.jpg'); html5player.setThumbUrl169('https://img-egc.xvideos-cdn.com/videos/thumbs169lll/65/fd/c7/65fdc71ebba387188974034ba1113002/65fdc71ebba387188974034ba1113002.1.jpg'); html5player.setRelated(video_related); html5player.setThumbSlide('https://img-egc.xvideos-cdn.com/videos/thumbs169/65/fd/c7/65fdc71ebba387188974034ba1113002/mozaique.jpg'); html5player.setThumbSlideBig('https://img-egc.xvideos-cdn.com/videos/thumbs169/65/fd/c7/65fdc71ebba387188974034ba1113002/mozaiquefull.jpg'); html5player.setThumbSlideMinute('https://img-egc.xvideos-cdn.com/videos/thumbs169/65/fd/c7/65fdc71ebba387188974034ba1113002/mozaiquemin_'); html5player.setIdCDN('7'); html5player.setIdCdnHLS('7'); html5player.setFakePlayer(false); html5player.setDesktopiew(false); html5player.setSeekBarColor('#de2600'); html5player.setUploaderName('dirty_tina'); html5player.setVideoURL('/video38180533/mom_needs_it_every_day'); html5player.setStaticDomain('static-hw.xvideos.com'); html5player.setHttps(); html5player.setCanUseHttps(); document.getElementById('html5video').style.minHeight = ''; html5player.initPlayer(); } </script> <script> if (document.getElementById('html5video_base')) { document.getElementById('html5video_base').style.display = ''; } if (!html5player) { document.getElementById('html5video').style.minHeight = ''; xv.console.log('Unable to load HTML5Player', 'Video page'); function createRequestObject() { var xhr; try { xhr = new XMLHttpRequest(); } catch (e) { xhr = new ActiveXObject("Microsoft.XMLHTTP"); } return xhr; } var js_error = createRequestObject(); js_error.open('GET', '/html5player/jserror/38180533/2', true); js_error.send(); } </script> </div> </div> <div id="video-tabs" class="xv-tabs"><div id="video-views-votes"><span class="nb-views"><span class="views-full"> <strong id="nb-views-number">251,516</strong> views </span><strong class="nb-views-number">252k</strong></span><span class="vote-actions"><a class="btn btn-default vote-action-good"><span class="icon thumb-up black black-hover">&nbsp;</span></a><a class="btn btn-default vote-action-bad"><span class="icon thumb-down grey black-hover">&nbsp;</span></a></span><span class="rating-box">99<span class="mobile-hide decimals">.01</span>% <span class="icon thumb-up grey">&nbsp;</span></span></div><ul class="tab-buttons"><li><a class="btn btn-default" id="tabComments_btn"><span class="icon comments-small"></span><span class="visible-lg-inline"> Comments</span><span class="navbadge nb-video-comments nb-video-comments-12 ">12</span></a></li><li><a class="btn btn-default"><span class="icon download"></span><span class="visible-lg-inline"> Download</span></a></li><li><a class="btn btn-default"><span class="icon favorites-add"></span><span class="visible-lg-inline"> Add to my favorites</span></a></li><li><a class="btn btn-default"><span class="icon report"></span><span class="visible-lg-inline"> Report</span></a></li><li><a class="btn btn-default"><span class="visible-lg-inline"><span class="icon-f icf-embed"></span> Embed</span><span class="seperator visible-lg-inline-block">/</span><span class="icon share-small"></span><span class="visible-lg-inline"> Share</span></a></li></ul><div class="tabs"><div id="tabComments" class="tab"><h4>Comments (<span class="nb-video-comments">12</span>):</h4><a class="btn btn-default btn-sm" id="video-post-comment">Post a comment</a><div id="comments-container"><div id="comments"></div></div></div><div id="tabDownload" class="tab"></div><div id="tabFavs" class="tab"><h4 class="bg-title grey-dark top no-border">Add this video to one of my favorites list:</h4><div id="favs-container"></div></div><div id="tabReport" class="tab"><h4 class="bg-title grey-dark top no-border">Report this video:</h4></div><div id="tabShareAndEmbed" class="tab"><h4 class="bg-title grey-dark top no-border">Embed this video to your site with this code:</h4><input type="text" onclick="this.focus(); this.select();" value="&lt;iframe src=&quot;https://www.xvideos.com/embedframe/38180533&quot; frameborder=0 width=510 height=400 scrolling=no allowfullscreen=allowfullscreen&gt;&lt;/iframe&gt;" class="form-control"><h4 class="bg-title grey-dark no-border">Share this video:</h4></div></div></div> <div class="hidden"><div id="listing-settings"><div class="btn" title="Settings"><span class="icon-f icf-cog"></span></div></div></div> <script>xv.thumbs.write_related(video_related);</script>
Xv2-1080
2018-08-11T21:46:11.000Z
comment_count"?:{"?total_count"?:(\d*)}.*?reaction_count"?:{"?count"?:(\d*).*?share_count"?:{"?count"?:(\d*)}?.*?share_fbid":"(\d*)"
<!DOCTYPE html> <html lang="fr" id="facebook" class="no_js"> <head><meta charset="utf-8" /><meta name="referrer" content="default" id="meta_referrer" /><script>window._cstart=+new Date();</script><script>function envFlush(a){function b(b){for(var c in a)b[c]=a[c]}window.requireLazy?window.requireLazy(["Env"],b):(window.Env=window.Env||{},b(window.Env))}envFlush({"ajaxpipe_token":"AXg6RIRKsC-qEMDI","timeslice_heartbeat_config":{"pollIntervalMs":33,"idleGapThresholdMs":60,"ignoredTimesliceNames":{"requestAnimationFrame":true,"Event listenHandler mousemove":true,"Event listenHandler mouseover":true,"Event listenHandler mouseout":true,"Event listenHandler scroll":true},"isHeartbeatEnabled":true,"isArtilleryOn":false},"shouldLogCounters":true,"timeslice_categories":{"react_render":true,"reflow":true},"sample_continuation_stacktraces":true,"dom_mutation_flag":true,"stack_trace_limit":30,"deferred_stack_trace_rate":1000,"timesliceBufferSize":5000,"show_invariant_decoder":false,"compat_iframe_token":"AQ6inhlD9TcmHRG5","isCQuick":false});</script><style></style><script>__DEV__=0;CavalryLogger=window.CavalryLogger||function(a){this.lid=a,this.transition=!1,this.metric_collected=!1,this.is_detailed_profiler=!1,this.instrumentation_started=!1,this.pagelet_metrics={},this.events={},this.ongoing_watch={},this.values={t_cstart:window._cstart},this.piggy_values={},this.bootloader_metrics={},this.resource_to_pagelet_mapping={},this.initializeInstrumentation&&this.initializeInstrumentation()},CavalryLogger.prototype.setIsDetailedProfiler=function(a){this.is_detailed_profiler=a;return this},CavalryLogger.prototype.setTTIEvent=function(a){this.tti_event=a;return this},CavalryLogger.prototype.setValue=function(a,b,c,d){d=d?this.piggy_values:this.values;(typeof d[a]==="undefined"||c)&&(d[a]=b);return this},CavalryLogger.prototype.getLastTtiValue=function(){return this.lastTtiValue},CavalryLogger.prototype.setTimeStamp=CavalryLogger.prototype.setTimeStamp||function(a,b,c,d){this.mark(a);var e=this.values.t_cstart||this.values.t_start;e=d?e+d:CavalryLogger.now();this.setValue(a,e,b,c);this.tti_event&&a==this.tti_event&&(this.lastTtiValue=e,this.setTimeStamp("t_tti",b));return this},CavalryLogger.prototype.mark=typeof console==="object"&&console.timeStamp?function(a){console.timeStamp(a)}:function(){},CavalryLogger.prototype.addPiggyback=function(a,b){this.piggy_values[a]=b;return this},CavalryLogger.instances={},CavalryLogger.id=0,CavalryLogger.disableArtilleryOnUntilOffLogging=!1,CavalryLogger.getInstance=function(a){typeof a==="undefined"&&(a=CavalryLogger.id);CavalryLogger.instances[a]||(CavalryLogger.instances[a]=new CavalryLogger(a));return CavalryLogger.instances[a]},CavalryLogger.setPageID=function(a){if(CavalryLogger.id===0){var b=CavalryLogger.getInstance();CavalryLogger.instances[a]=b;CavalryLogger.instances[a].lid=a;delete CavalryLogger.instances[0]}CavalryLogger.id=a},CavalryLogger.now=function(){return window.performance&&performance.timing&&performance.timing.navigationStart&&performance.now?performance.now()+performance.timing.navigationStart:new Date().getTime()},CavalryLogger.prototype.measureResources=function(){},CavalryLogger.prototype.profileEarlyResources=function(){},CavalryLogger.getBootloaderMetricsFromAllLoggers=function(){},CavalryLogger.start_js=function(){},CavalryLogger.done_js=function(){};CavalryLogger.getInstance().setTTIEvent("t_domcontent");CavalryLogger.prototype.measureResources=function(a,b){if(!this.log_resources)return;var c="bootload/"+a.name;if(this.bootloader_metrics[c]!==void 0||this.ongoing_watch[c]!==void 0)return;var d=CavalryLogger.now();this.ongoing_watch[c]=d;"start_"+c in this.bootloader_metrics||(this.bootloader_metrics["start_"+c]=d);b&&!("tag_"+c in this.bootloader_metrics)&&(this.bootloader_metrics["tag_"+c]=b);if(a.type==="js"){c="js_exec/"+a.name;this.ongoing_watch[c]=d}},CavalryLogger.prototype.stopWatch=function(a){if(this.ongoing_watch[a]){var b=CavalryLogger.now(),c=b-this.ongoing_watch[a];this.bootloader_metrics[a]=c;var d=this.piggy_values;a.indexOf("bootload")===0&&(d.t_resource_download||(d.t_resource_download=0),d.resources_downloaded||(d.resources_downloaded=0),d.t_resource_download+=c,d.resources_downloaded+=1,d["tag_"+a]=="_EF_"&&(d.t_pagelet_cssload_early_resources=b));delete this.ongoing_watch[a]}return this},CavalryLogger.getBootloaderMetricsFromAllLoggers=function(){var a={};Object.values(window.CavalryLogger.instances).forEach(function(b){b.bootloader_metrics&&Object.assign(a,b.bootloader_metrics)});return a},CavalryLogger.start_js=function(a){for(var b=0;b<a.length;++b)CavalryLogger.getInstance().stopWatch("js_exec/"+a[b])},CavalryLogger.done_js=function(a){for(var b=0;b<a.length;++b)CavalryLogger.getInstance().stopWatch("bootload/"+a[b])},CavalryLogger.prototype.profileEarlyResources=function(a){for(var b=0;b<a.length;b++)this.measureResources({name:a[b][0],type:a[b][1]?"js":""},"_EF_")};CavalryLogger.getInstance().log_resources=true;CavalryLogger.getInstance().setIsDetailedProfiler(true);window.CavalryLogger&&CavalryLogger.getInstance().setTimeStamp("t_start");</script><noscript><meta http-equiv="refresh" content="0; URL=/cgtnamerica/posts/?_fb_noscript=1" /></noscript><title id="pageTitle">CGTN America - Publications | Facebook</title><link rel="alternate" media="only screen and (max-width: 640px)" href="https://m.facebook.com/pages/category/News---Media-Website/cgtnamerica/posts/" /><link rel="alternate" media="handheld" href="https://m.facebook.com/pages/category/News---Media-Website/cgtnamerica/posts/" /><meta property="al:android:app_name" content="Facebook" /><meta property="al:android:package" content="com.facebook.katana" /><meta property="al:android:url" content="fb://page/300653326696613?referrer=app_link" /><meta property="al:ios:app_name" content="Facebook" /><meta property="al:ios:app_store_id" content="284882215" /><meta property="al:ios:url" content="fb://page/?id=300653326696613" /><link rel="alternate" type="application/json+oembed" href="https://www.facebook.com/plugins/page/oembed.json/?url=https%3A%2F%2Fwww.facebook.com%2Fcgtnamerica%2F" title="CGTN America" /><meta name="description" content="CGTN America, Washington (district de Columbia). 1&#xa0;242&#xa0;504 J&#x2019;aime &#xb7; 38&#xa0;557 en parlent. We are the Washington, D.C. bureau contributing news programming..." /><script type="application/ld+json">{"\u0040context":"http:\/\/schema.org","\u0040type":"Organization","name":"CGTN America","aggregateRating":{"\u0040type":"AggregateRating","ratingValue":4.3,"ratingCount":1325}}</script><script type="application/ld+json">{"\u0040context":"http:\/\/schema.org","\u0040type":"Review","name":"","reviewBody":"Tr\u00e8s int\u00e9ressant j'aime \u00eatres au courant des \u00e9l\u00e9ments dans le Monde mais en Fran\u00e7aise merci","itemReviewed":{"\u0040type":"Organization","name":"CGTN America","sameAs":"https:\/\/www.facebook.com\/cgtnamerica\/"},"reviewRating":{"\u0040type":"Rating","ratingValue":5},"author":{"\u0040type":"Person","name":"Azzou Bonheur Sarroub"}}</script><script type="application/ld+json">{"\u0040context":"http:\/\/schema.org","\u0040type":"Review","name":"","reviewBody":"voter avis sur cgtn america rachedi ali tre bien","itemReviewed":{"\u0040type":"Organization","name":"CGTN America","sameAs":"https:\/\/www.facebook.com\/cgtnamerica\/"},"reviewRating":{"\u0040type":"Rating","ratingValue":4},"author":{"\u0040type":"Person","name":"Rachedi Ali"}}</script><script type="application/ld+json">{"\u0040context":"http:\/\/schema.org","\u0040type":"Review","name":"","reviewBody":"J'aime tr\u00e8s bien cette cha\u00eene","itemReviewed":{"\u0040type":"Organization","name":"CGTN America","sameAs":"https:\/\/www.facebook.com\/cgtnamerica\/"},"reviewRating":{"\u0040type":"Rating","ratingValue":1},"author":{"\u0040type":"Person","name":"Marcelo Caetano"}}</script><script type="application/ld+json">{"\u0040context":"http:\/\/schema.org","\u0040type":"Review","name":"","reviewBody":"This storage is very good storage, thanks a lot for your amazing storage, i love this service because i can read colour full news everyday and know how to happen all over the world.we can know advance and unadvance by read this service that's why this is amazing and lovely storage","itemReviewed":{"\u0040type":"Organization","name":"CGTN America","sameAs":"https:\/\/www.facebook.com\/cgtnamerica\/"},"reviewRating":{"\u0040type":"Rating","ratingValue":5},"author":{"\u0040type":"Person","name":"Ever Smile"}}</script><script type="application/ld+json">{"\u0040context":"http:\/\/schema.org","\u0040type":"Review","name":"","reviewBody":"herbal solution to human papillomavirus (HPV), gonorrhea, chlamydia, genital herpes, Cancer, Hiv, Hepatitis B, Liver Inflammatory, Diabetis, Bone fractures, infertilty, good luck charms, love spells and Get Your Ex Back. is available, dont be mislead DR UDOKA can get you cure, i would want you to contact him if you have any of these disease, he cure me of herpes, dont die in ignorance, contact him today because delay is dangerous.. you can contact him of +2348057052564. whatsapp and calls","itemReviewed":{"\u0040type":"Organization","name":"CGTN America","sameAs":"https:\/\/www.facebook.com\/cgtnamerica\/"},"reviewRating":{"\u0040type":"Rating","ratingValue":5},"author":{"\u0040type":"Person","name":"Aghatise Immanuela Jane"}}</script><script type="application/ld+json">{"\u0040context":"http:\/\/schema.org","\u0040type":"Review","name":"","reviewBody":"Attention all CTTV staff and viewers!\nLook at the notice I received trying to post CCTV news on Facebook yesterday, 21 December 2016:\n\u201cWarning: This Message Contains Blocked Content\nYour message couldn't be sent because it includes content that other people on Facebook have reported as abusive.\u201d\nJuro GD Kne\u017ei\u0107 (London, Canada. N5Z3S9)\nSee me on Facebook and LinkedIn (as Juro Knezic) for more.\n(I am a Type A Specialist Teacher for World Politics, and World History. Getting opposing views is essential for class debates as given by AEP book \"Taking A Stand\" by HARVARD University Press, U.S.A. Hello Facebook!)","itemReviewed":{"\u0040type":"Organization","name":"CGTN America","sameAs":"https:\/\/www.facebook.com\/cgtnamerica\/"},"reviewRating":{"\u0040type":"Rating","ratingValue":3},"author":{"\u0040type":"Person","name":"Juro Knezic"}}</script><script type="application/ld+json">{"\u0040context":"http:\/\/schema.org","\u0040type":"Review","name":"","reviewBody":"Very good place for fresh information directly from the Chinese Communist Party which is always right for sure! If you want to hear what they want to tell this is your place! Enjoy!","itemReviewed":{"\u0040type":"Organization","name":"CGTN America","sameAs":"https:\/\/www.facebook.com\/cgtnamerica\/"},"reviewRating":{"\u0040type":"Rating","ratingValue":3},"author":{"\u0040type":"Person","name":"Jimmy Laowai"}}</script><script type="application/ld+json">{"\u0040context":"http:\/\/schema.org","\u0040type":"Review","name":"","reviewBody":"Hi everyone I don't have a family now I am in Turkey here's people of this country not respect immigrant prople in our country Afghanistan every day bombing \ud83d\ude23\ud83d\ude23\ud83d\ude23","itemReviewed":{"\u0040type":"Organization","name":"CGTN America","sameAs":"https:\/\/www.facebook.com\/cgtnamerica\/"},"reviewRating":{"\u0040type":"Rating","ratingValue":5},"author":{"\u0040type":"Person","name":"Ismail Durrani"}}</script><script type="application/ld+json">{"\u0040context":"http:\/\/schema.org","\u0040type":"Review","name":"","reviewBody":"I love CCTV because it helps me feel more connected to the rest of the World! It is also helpful to see how people from other countries view Donald Trump and Hillary Clinton since the results of this election has global implications! \u263a","itemReviewed":{"\u0040type":"Organization","name":"CGTN America","sameAs":"https:\/\/www.facebook.com\/cgtnamerica\/"},"reviewRating":{"\u0040type":"Rating","ratingValue":5},"author":{"\u0040type":"Person","name":"Stephanie Aston"}}</script><script type="application/ld+json">{"\u0040context":"http:\/\/schema.org","\u0040type":"Review","name":"","reviewBody":"Thank you for the wonderful story of the young man that created the \"safe place school\" in Guatemala . More stories on human compassion are needed to offset the murder and mayhem caused by all govts....Omidullah Qlander","itemReviewed":{"\u0040type":"Organization","name":"CGTN America","sameAs":"https:\/\/www.facebook.com\/cgtnamerica\/"},"reviewRating":{"\u0040type":"Rating","ratingValue":5},"author":{"\u0040type":"Person","name":"Omidullah Qlander"}}</script><script type="application/ld+json">{"\u0040context":"http:\/\/schema.org","\u0040type":"Review","name":"","reviewBody":"I like meeting beautiful and sincere people ,I am from China live in China but will like to travel to America and Canada","itemReviewed":{"\u0040type":"Organization","name":"CGTN America","sameAs":"https:\/\/www.facebook.com\/cgtnamerica\/"},"reviewRating":{"\u0040type":"Rating","ratingValue":5},"author":{"\u0040type":"Person","name":"Cherry Wing"}}</script><script type="application/ld+json">{"\u0040context":"http:\/\/schema.org","\u0040type":"Review","name":"","reviewBody":"with all the information broadcast by CCTV America (news, the heat,sports,new money, global business, etc) just to mention a few I really enjoy and appreciate them with full satisfaction.","itemReviewed":{"\u0040type":"Organization","name":"CGTN America","sameAs":"https:\/\/www.facebook.com\/cgtnamerica\/"},"reviewRating":{"\u0040type":"Rating","ratingValue":1},"author":{"\u0040type":"Person","name":"Francis Juin"}}</script><script type="application/ld+json">{"\u0040context":"http:\/\/schema.org","\u0040type":"Review","name":"","reviewBody":"every good CGTN \ncctv news is the one word information broadcast by cctv america (new- news the heat\nsports full new money word.","itemReviewed":{"\u0040type":"Organization","name":"CGTN America","sameAs":"https:\/\/www.facebook.com\/cgtnamerica\/"},"reviewRating":{"\u0040type":"Rating","ratingValue":5},"author":{"\u0040type":"Person","name":"Moemin Moeminchitthu"}}</script><script type="application/ld+json">{"\u0040context":"http:\/\/schema.org","\u0040type":"Review","name":"","reviewBody":"CCTV is only the propaganda Machine of the Chinese Communist Party, don't watch or listen to anything of theirs.","itemReviewed":{"\u0040type":"Organization","name":"CGTN America","sameAs":"https:\/\/www.facebook.com\/cgtnamerica\/"},"reviewRating":{"\u0040type":"Rating","ratingValue":1},"author":{"\u0040type":"Person","name":"Austin Case"}}</script><script type="application/ld+json">{"\u0040context":"http:\/\/schema.org","\u0040type":"Review","name":"","reviewBody":"Excelente en noticias es una soluci\u00f3n para informarse de lo que pasa en Am\u00e9rica y el Mundo entero....me encantar\u00eda que lo transmitieran en Guatemala.","itemReviewed":{"\u0040type":"Organization","name":"CGTN America","sameAs":"https:\/\/www.facebook.com\/cgtnamerica\/"},"reviewRating":{"\u0040type":"Rating","ratingValue":5},"author":{"\u0040type":"Person","name":"Silvia Lisseth"}}</script><script type="application/ld+json">{"\u0040context":"http:\/\/schema.org","\u0040type":"Review","name":"","reviewBody":"Watch The Point with Liu Xin every day from my office in Scottsdale, Arizona--USA. A Chinese anchor with a fiery personality, Liu Xin is great!","itemReviewed":{"\u0040type":"Organization","name":"CGTN America","sameAs":"https:\/\/www.facebook.com\/cgtnamerica\/"},"reviewRating":{"\u0040type":"Rating","ratingValue":5},"author":{"\u0040type":"Person","name":"Thomas Simon"}}</script><script type="application/ld+json">{"\u0040context":"http:\/\/schema.org","\u0040type":"Review","name":"","reviewBody":"The biggest criminal sygeplejerske Tea hide in Denmark Frederiksberg Psykiatrisk Center. She close normal Danish people in Psykiatrisk Department. \nShe killed and murdered Danish People. \nAll justice and democraty people go to catch Tea group criminal. \nDo not let her destroy Danish people's life.","itemReviewed":{"\u0040type":"Organization","name":"CGTN America","sameAs":"https:\/\/www.facebook.com\/cgtnamerica\/"},"reviewRating":{"\u0040type":"Rating","ratingValue":1},"author":{"\u0040type":"Person","name":"Zhaohui Sun"}}</script><script type="application/ld+json">{"\u0040context":"http:\/\/schema.org","\u0040type":"Review","name":"","reviewBody":"Love CCTV America, provides an excellent coverage of news and in depth analysis of many current issues around the world.","itemReviewed":{"\u0040type":"Organization","name":"CGTN America","sameAs":"https:\/\/www.facebook.com\/cgtnamerica\/"},"reviewRating":{"\u0040type":"Rating","ratingValue":5},"author":{"\u0040type":"Person","name":"Pong Terry"}}</script><script type="application/ld+json">{"\u0040context":"http:\/\/schema.org","\u0040type":"Review","name":"","reviewBody":"CCTV is always inspirational to me it covers news from around the world, it actually updates me with the ideas every day","itemReviewed":{"\u0040type":"Organization","name":"CGTN America","sameAs":"https:\/\/www.facebook.com\/cgtnamerica\/"},"reviewRating":{"\u0040type":"Rating","ratingValue":5},"author":{"\u0040type":"Person","name":"Jacob Oboth"}}</script><script type="application/ld+json">{"\u0040context":"http:\/\/schema.org","\u0040type":"Review","name":"","reviewBody":"It's indeed a place to be as well as getting closer to the world events and sudden happenings.","itemReviewed":{"\u0040type":"Organization","name":"CGTN America","sameAs":"https:\/\/www.facebook.com\/cgtnamerica\/"},"reviewRating":{"\u0040type":"Rating","ratingValue":5},"author":{"\u0040type":"Person","name":"Obong M E Essien"}}</script><meta property="og:title" content="CGTN America" /><meta property="og:description" content="CGTN America, Washington (district de Columbia). 1&#xa0;242&#xa0;504 J&#x2019;aime &#xb7; 38&#xa0;557 en parlent. We are the Washington, D.C. bureau contributing news programming to CGTN, This material is distributed by..." /><meta property="og:image" content="https://scontent-cdg2-1.xx.fbcdn.net/v/t1.0-1/p200x200/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&amp;_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=eb1374803cab966f79e07edf29281666&amp;oe=5E9CF7EC" /><meta property="og:url" content="https://www.facebook.com/pages/category/News---Media-Website/cgtnamerica/posts/" /><link rel="shortcut icon" href="https://static.xx.fbcdn.net/rsrc.php/yz/r/KFyVIAWzntM.ico" /><link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yy/l/0,cross/JnwdbA1Rz6e.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="JTZ86" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/y5/l/0,cross/_Mia4J-XmDW.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="JDg4l" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yA/l/0,cross/hyJ9D7JEra5.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="no9Df" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yC/l/0,cross/NSJRvyCg953.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="AM+bO" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yw/l/0,cross/5JtzakySbiB.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="c6zYF" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yr/l/0,cross/yT65OA2HjmZ.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="5IEYP" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yU/l/0,cross/UgkEqkPmrgR.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="gVdqy" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yN/l/0,cross/Vfq8aJj3wto.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="isakB" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/y7/l/0,cross/pE3REUxaHAp.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="tz4gj" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yw/l/0,cross/i4FLUCC9nQ-.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="FwtnY" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yF/l/0,cross/dJCYm8hD58-.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="s7qTM" /> <link type="text/css" rel="stylesheet" href="data:text/css; charset=utf-8;base64,I2Jvb3Rsb2FkZXJfUF9tcjV7aGVpZ2h0OjQycHg7fS5ib290bG9hZGVyX1BfbXI1e2Rpc3BsYXk6YmxvY2shaW1wb3J0YW50O30=" data-bootloader-hash="P/mr5" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yt/l/0,cross/tLz3rKddzM0.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="E1i6a" /> <link type="text/css" rel="stylesheet" href="data:text/css; charset=utf-8;base64,LnRfYzNweW8ybjdpIGEsLnRfYzNweW8ybjdpLm5fYzNweW4teWV1IGEsLnRfYzNweW8ybjdpLm9fYzNweW4tMnpzIGF7Y29sb3I6Izk5OX0ueV9jM3B5bzFxbjV7Y29sb3I6IzYxNjc3MH0udF9jM3B5bzJuN2kuaF9jM3B5bzF0bWIgYSwudF9jM3B5bzJuN2kubl9jM3B5bi15ZXUuaF9jM3B5bzF0bWIgYSwudF9jM3B5bzJuN2kub19jM3B5bi0yenMuaF9jM3B5bzF0bWIgYXtjb2xvcjojNjE2NzcwfWEudF9jM3B5bzJuN2kuY19jM3B5bzV2dzN7Y29sb3I6IzYwNjc3MH0uXzV2M3EgLnRfYzNweW8ybjdpIC5uX2MzcHlvMGN2Nntjb2xvcjojOTA5NDljfS50X2MzcHlvMHFwaXtmb250LXNpemU6MH0ud19jM3B5bzVsNmp7b3BhY2l0eTowO3Bvc2l0aW9uOmFic29sdXRlfS5iX2MzcHluLTI0cHtkaXNwbGF5OmlubGluZS1ibG9jazt3aGl0ZS1zcGFjZTpwcmUtd3JhcH0uY19jM3B5bzVidDd7ZGlzcGxheTppbmxpbmUtYmxvY2s7d2hpdGUtc3BhY2U6cHJlLXdyYXA7bGluZS1oZWlnaHQ6MThweH0uZl9jM3B5bzEtdDl7ZGlzcGxheTppbmxpbmUtYmxvY2t9Lm9fYzNweW4tMnpzKy5fNnNwa3tkaXNwbGF5Om5vbmV9LmRfYzNweW8xYzU4e2Rpc3BsYXk6bm9uZX0uZF9jM3B5bzFjNTgrLl82c3Bre2Rpc3BsYXk6bm9uZX0ubl9jM3B5bzFxdjYrLl82c3Bre2Rpc3BsYXk6bm9uZX0jYm9vdGxvYWRlcl81djAwRHtoZWlnaHQ6NDJweDt9LmJvb3Rsb2FkZXJfNXYwMER7ZGlzcGxheTpibG9jayFpbXBvcnRhbnQ7fQ==" data-bootloader-hash="5v00D" /> <link type="text/css" rel="stylesheet" href="data:text/css; charset=utf-8;base64,LmxfYzNweW8ydjB1e21hcmdpbi1ib3R0b206NnB4fS55X2MzcHlvMnRhM3ttYXJnaW4tYm90dG9tOi02cHh9LnVfYzNweW8ydGE0e3BhZGRpbmctYm90dG9tOjZweH0uXzV2M3EgLmxfYzNweW8ydjB1e21hcmdpbi1ib3R0b206MTFweH0uXzV2M3EgLmxfYzNweW8ydjB1LmlfYzNweW55aTJme21hcmdpbi1ib3R0b206LTFweH0uXzV2M3EgLmxfYzNweW8ydjB1LmlfYzNweW55aTJmIC5vX2MzcHlueWkyZ3twYWRkaW5nLWJvdHRvbTozcHh9Ll81djNxIC5fNXBhLSAubF9jM3B5bzJ2MHV7bWFyZ2luLWJvdHRvbTo3cHh9LnJfYzNweW8yZXkxe2JvcmRlci1ib3R0b206MXB4IHNvbGlkICNlOWU5ZTk7Y29sb3I6IzdmN2Y3ZjtkaXNwbGF5OmJsb2NrO2ZvbnQtc2l6ZToxM3B4O21hcmdpbjotMThweCAwIDE0cHg7cGFkZGluZzoxM3B4IDAgMTNweH0uXzV2M3EgLnJfYzNweW8yZXkxe2JvcmRlci1ib3R0b20tY29sb3I6I2U1ZTVlNTtjb2xvcjojOTA5NDljO2xpbmUtaGVpZ2h0OjE1cHg7bWFyZ2luOi0xMnB4IDAgMTJweDtwYWRkaW5nOjEwcHggMjNweCAxMHB4IDB9Ll81djNxIC5yX2MzcHlvMmV5MS54X2MzcHluenFfNCwuXzFzMzEueF9jM3B5bnpxXzQgLnJfYzNweW8yZXkxe2NvbG9yOiM2MTY3NzB9Ll81djNxIC5yX2MzcHlvMmV5MS52X2MzcHluenFfNiwuXzFzMzEudl9jM3B5bnpxXzYgLnJfYzNweW8yZXkxe2ZvbnQtc2l6ZToxM3B4fS5fM2NjYiAucl9jM3B5bzJleTF7Zm9udC1zaXplOjEycHg7cGFkZGluZy1ib3R0b206OXB4O3BhZGRpbmctdG9wOjExcHh9Ll80OWdsIC5yX2MzcHlvMmV5MXtkaXNwbGF5Om5vbmV9LnJfYzNweW8yZXkxIC5tX2MzcHluenU0YnttYXJnaW46MDtwYWRkaW5nOjEwcHggMCAxMHB4IDEycHh9Ll82cTFhIC5pX2MzcHlvNHJkcC5yX2MzcHlvMmV5MXthbGlnbi1pdGVtczpjZW50ZXI7ZGlzcGxheTpmbGV4fS5fNnExYSAuaV9jM3B5bzRyZHAgLndfYzNweW80cmU3e2ZvbnQtc2l6ZToxNHB4O2xpbmUtaGVpZ2h0OjE2cHh9Ll82cTFhIC5pX2MzcHlvNHJkcCAud19jM3B5bzRyZTcgLnByb2ZpbGVMaW5re2ZvbnQtd2VpZ2h0OmJvbGR9Ll82cTFhIC5xX2MzcHlvNGk5YXtwYWRkaW5nLXJpZ2h0OjB9Ll82cTFhIC5pX2MzcHlvNHJkcCAudV9jM3B5bzQ2ZDZ7ZmxleDoxIDEgMHB4O2ZvbnQtd2VpZ2h0OmJvbGR9Ll82cTFhIC5pX2MzcHlvNHJkcCAuZV9jM3B5bzRyZTh7YWxpZ24taXRlbXM6Y2VudGVyO2JhY2tncm91bmQtY29sb3I6IzQyYjcyYTtib3JkZXItcmFkaXVzOjUwJTtib3gtc2hhZG93OjAgMnB4IDRweCAwIHJnYmEoMCwgMCwgMCwgLjEpO2Rpc3BsYXk6aW5saW5lLWZsZXg7ZmxleC1zaHJpbms6MDtoZWlnaHQ6MjRweDtqdXN0aWZ5LWNvbnRlbnQ6Y2VudGVyO21hcmdpbi1yaWdodDo4cHg7d2lkdGg6MjRweH0jYm9vdGxvYWRlcl9Udm9BQXtoZWlnaHQ6NDJweDt9LmJvb3Rsb2FkZXJfVHZvQUF7ZGlzcGxheTpibG9jayFpbXBvcnRhbnQ7fQ==" data-bootloader-hash="TvoAA" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yI/l/0,cross/bQ7rCNXNlHt.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="PYgcm" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/y_/l/0,cross/fdpPg4HGp9x.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="PfhC2" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yh/l/0,cross/mJtTuMGuJKq.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="VgSKM" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yz/l/0,cross/cKn0Za4jHIp.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="bspa7" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yO/l/0,cross/My3jI-PGK5x.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="2U9PY" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yq/l/0,cross/V9X0duNaXX3.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="UYizf" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/y0/l/0,cross/-Nbukt-fhh1.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="e8WHZ" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yV/l/0,cross/g0EULpr2HZp.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="eGREx" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/y5/l/0,cross/HaQkZwuZ1go.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="dFY2N" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/ys/l/0,cross/lJ95BHbtegI.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="khB+Z" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yF/l/0,cross/1SUya2ypOau.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="UxwTG" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yh/l/0,cross/G7awnYPSLUn.css?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="iwx3a" /> <script src="https://static.xx.fbcdn.net/rsrc.php/v3/yi/r/9Foa6nwGFF1.js?_nc_x=Ij3Wp8lg5Kz" data-bootloader-hash="6X0fY"></script> <script>requireLazy(["ix"],function(ix){ix.add({"101769":{"sprited":true,"spriteCssClass":"sx_7ebb8f","spriteMapCssClass":"sp__jZ4pRfiS3z"},"123858":{"sprited":true,"spriteCssClass":"sx_a90b21","spriteMapCssClass":"sp__jZ4pRfiS3z"},"101301":{"sprited":true,"spriteCssClass":"sx_8066bf","spriteMapCssClass":"sp_qtp6H98Uhz5"},"101305":{"sprited":true,"spriteCssClass":"sx_d51a13","spriteMapCssClass":"sp_qtp6H98Uhz5"},"114569":{"sprited":true,"spriteCssClass":"sx_5dcbae","spriteMapCssClass":"sp__jZ4pRfiS3z"},"114929":{"sprited":true,"spriteCssClass":"sx_ac3323","spriteMapCssClass":"sp__jZ4pRfiS3z"},"114932":{"sprited":true,"spriteCssClass":"sx_bfcc8a","spriteMapCssClass":"sp__jZ4pRfiS3z"},"116170":{"sprited":true,"spriteCssClass":"sx_c4bc56","spriteMapCssClass":"sp__jZ4pRfiS3z"},"116498":{"sprited":true,"spriteCssClass":"sx_c90162","spriteMapCssClass":"sp__jZ4pRfiS3z"},"116533":{"sprited":true,"spriteCssClass":"sx_63d40f","spriteMapCssClass":"sp__jZ4pRfiS3z"},"124952":{"sprited":true,"spriteCssClass":"sx_f5718b","spriteMapCssClass":"sp__jZ4pRfiS3z"},"127000":{"sprited":true,"spriteCssClass":"sx_ae16fe","spriteMapCssClass":"sp__jZ4pRfiS3z"},"127712":{"sprited":true,"spriteCssClass":"sx_69b421","spriteMapCssClass":"sp__jZ4pRfiS3z"},"128986":{"sprited":true,"spriteCssClass":"sx_ce7a93","spriteMapCssClass":"sp_3HImAxvwBdm"},"363510":{"sprited":true,"spriteCssClass":"sx_93270c","spriteMapCssClass":"sp__jZ4pRfiS3z"},"381821":{"sprited":true,"spriteCssClass":"sx_229b0e","spriteMapCssClass":"sp__jZ4pRfiS3z"},"381822":{"sprited":true,"spriteCssClass":"sx_afc0b5","spriteMapCssClass":"sp__jZ4pRfiS3z"},"396312":{"sprited":true,"spriteCssClass":"sx_a315a8","spriteMapCssClass":"sp__jZ4pRfiS3z"},"418478":{"sprited":true,"spriteCssClass":"sx_e26d29","spriteMapCssClass":"sp__jZ4pRfiS3z"},"484386":{"sprited":true,"spriteCssClass":"sx_f3ffc0","spriteMapCssClass":"sp_qtp6H98Uhz5"},"488981":{"sprited":true,"spriteCssClass":"sx_dbc546","spriteMapCssClass":"sp_ddXiTdIB8vm"},"493831":{"sprited":true,"spriteCssClass":"sx_2884ad","spriteMapCssClass":"sp__jZ4pRfiS3z"},"503752":{"sprited":true,"spriteCssClass":"sx_e96851","spriteMapCssClass":"sp__jZ4pRfiS3z"},"504109":{"sprited":true,"spriteCssClass":"sx_56d424","spriteMapCssClass":"sp__jZ4pRfiS3z"},"509921":{"sprited":true,"spriteCssClass":"sx_ae4939","spriteMapCssClass":"sp__jZ4pRfiS3z"},"548195":{"sprited":true,"spriteCssClass":"sx_5dd189","spriteMapCssClass":"sp__jZ4pRfiS3z"},"548196":{"sprited":true,"spriteCssClass":"sx_fa2ef5","spriteMapCssClass":"sp__jZ4pRfiS3z"},"602176":{"sprited":true,"spriteCssClass":"sx_f2c9b1","spriteMapCssClass":"sp__jZ4pRfiS3z"},"606105":{"sprited":true,"spriteCssClass":"sx_5448d6","spriteMapCssClass":"sp__jZ4pRfiS3z"},"363825":{"sprited":true,"spriteCssClass":"sx_7fe981","spriteMapCssClass":"sp__jZ4pRfiS3z"},"484394":{"sprited":true,"spriteCssClass":"sx_3b1750","spriteMapCssClass":"sp_C3bCylIXdkU"},"128156":{"sprited":true,"spriteCssClass":"sx_b519c9","spriteMapCssClass":"sp__jZ4pRfiS3z"},"127070":{"sprited":true,"spriteCssClass":"sx_67fb9c","spriteMapCssClass":"sp__jZ4pRfiS3z"},"128308":{"sprited":true,"spriteCssClass":"sx_008671","spriteMapCssClass":"sp__jZ4pRfiS3z"},"27445":{"sprited":true,"spriteCssClass":"sx_76883c","spriteMapCssClass":"sp__jZ4pRfiS3z"},"89956":{"sprited":true,"spriteCssClass":"sx_0907f6","spriteMapCssClass":"sp__jZ4pRfiS3z"},"89959":{"sprited":true,"spriteCssClass":"sx_2f902d","spriteMapCssClass":"sp__jZ4pRfiS3z"},"89968":{"sprited":true,"spriteCssClass":"sx_5ee635","spriteMapCssClass":"sp__jZ4pRfiS3z"},"89971":{"sprited":true,"spriteCssClass":"sx_4f7574","spriteMapCssClass":"sp__jZ4pRfiS3z"},"122292":{"sprited":true,"spriteCssClass":"sx_f3a345","spriteMapCssClass":"sp__jZ4pRfiS3z"},"122516":{"sprited":true,"spriteCssClass":"sx_dca3fb","spriteMapCssClass":"sp__jZ4pRfiS3z"},"122578":{"sprited":true,"spriteCssClass":"sx_c5ecaf","spriteMapCssClass":"sp_qtp6H98Uhz5"},"122807":{"sprited":true,"spriteCssClass":"sx_f730ff","spriteMapCssClass":"sp__jZ4pRfiS3z"},"122843":{"sprited":true,"spriteCssClass":"sx_724cf7","spriteMapCssClass":"sp__jZ4pRfiS3z"},"122846":{"sprited":true,"spriteCssClass":"sx_03a211","spriteMapCssClass":"sp__jZ4pRfiS3z"},"122947":{"sprited":true,"spriteCssClass":"sx_7af38c","spriteMapCssClass":"sp__jZ4pRfiS3z"},"123021":{"sprited":true,"spriteCssClass":"sx_e41d5c","spriteMapCssClass":"sp__jZ4pRfiS3z"},"123104":{"sprited":true,"spriteCssClass":"sx_06699d","spriteMapCssClass":"sp__jZ4pRfiS3z"},"123137":{"sprited":true,"spriteCssClass":"sx_9b299a","spriteMapCssClass":"sp__jZ4pRfiS3z"},"123247":{"sprited":true,"spriteCssClass":"sx_e2f066","spriteMapCssClass":"sp__jZ4pRfiS3z"},"123281":{"sprited":true,"spriteCssClass":"sx_ebf676","spriteMapCssClass":"sp__jZ4pRfiS3z"},"123312":{"sprited":true,"spriteCssClass":"sx_cc88a3","spriteMapCssClass":"sp__jZ4pRfiS3z"},"123350":{"sprited":true,"spriteCssClass":"sx_1941c5","spriteMapCssClass":"sp_qtp6H98Uhz5"},"123364":{"sprited":true,"spriteCssClass":"sx_cf008c","spriteMapCssClass":"sp__jZ4pRfiS3z"},"123445":{"sprited":true,"spriteCssClass":"sx_4acb55","spriteMapCssClass":"sp__jZ4pRfiS3z"},"123569":{"sprited":true,"spriteCssClass":"sx_2d4d3e","spriteMapCssClass":"sp__jZ4pRfiS3z"},"123662":{"sprited":true,"spriteCssClass":"sx_ec362e","spriteMapCssClass":"sp__jZ4pRfiS3z"},"123742":{"sprited":true,"spriteCssClass":"sx_82cded","spriteMapCssClass":"sp__jZ4pRfiS3z"},"141517":{"sprited":true,"spriteCssClass":"sx_e1c524","spriteMapCssClass":"sp__jZ4pRfiS3z"},"141741":{"sprited":true,"spriteCssClass":"sx_be313a","spriteMapCssClass":"sp__jZ4pRfiS3z"},"142032":{"sprited":true,"spriteCssClass":"sx_3d803c","spriteMapCssClass":"sp__jZ4pRfiS3z"},"142068":{"sprited":true,"spriteCssClass":"sx_23cf87","spriteMapCssClass":"sp__jZ4pRfiS3z"},"142071":{"sprited":true,"spriteCssClass":"sx_73cb09","spriteMapCssClass":"sp__jZ4pRfiS3z"},"142172":{"sprited":true,"spriteCssClass":"sx_435159","spriteMapCssClass":"sp__jZ4pRfiS3z"},"142246":{"sprited":true,"spriteCssClass":"sx_c60cb8","spriteMapCssClass":"sp__jZ4pRfiS3z"},"142329":{"sprited":true,"spriteCssClass":"sx_900669","spriteMapCssClass":"sp__jZ4pRfiS3z"},"142362":{"sprited":true,"spriteCssClass":"sx_5a5a86","spriteMapCssClass":"sp__jZ4pRfiS3z"},"142472":{"sprited":true,"spriteCssClass":"sx_952e60","spriteMapCssClass":"sp__jZ4pRfiS3z"},"142506":{"sprited":true,"spriteCssClass":"sx_91b1e8","spriteMapCssClass":"sp__jZ4pRfiS3z"},"142537":{"sprited":true,"spriteCssClass":"sx_54d9bc","spriteMapCssClass":"sp__jZ4pRfiS3z"},"142575":{"sprited":true,"spriteCssClass":"sx_ebcbaf","spriteMapCssClass":"sp__jZ4pRfiS3z"},"142589":{"sprited":true,"spriteCssClass":"sx_cc94e4","spriteMapCssClass":"sp__jZ4pRfiS3z"},"142670":{"sprited":true,"spriteCssClass":"sx_98d814","spriteMapCssClass":"sp__jZ4pRfiS3z"},"142794":{"sprited":true,"spriteCssClass":"sx_bec316","spriteMapCssClass":"sp__jZ4pRfiS3z"},"142887":{"sprited":true,"spriteCssClass":"sx_79548c","spriteMapCssClass":"sp__jZ4pRfiS3z"},"142967":{"sprited":true,"spriteCssClass":"sx_9b5621","spriteMapCssClass":"sp__jZ4pRfiS3z"},"481156":{"sprited":true,"spriteCssClass":"sx_6b2e1d","spriteMapCssClass":"sp__jZ4pRfiS3z"},"482855":{"sprited":true,"spriteCssClass":"sx_98df4d","spriteMapCssClass":"sp__jZ4pRfiS3z"},"497829":{"sprited":true,"spriteCssClass":"sx_6b0ff1","spriteMapCssClass":"sp__jZ4pRfiS3z"},"634439":{"sprited":true,"spriteCssClass":"sx_29835d","spriteMapCssClass":"sp__jZ4pRfiS3z"},"701301":{"sprited":true,"spriteCssClass":"sx_650cd6","spriteMapCssClass":"sp__jZ4pRfiS3z"},"126379":{"sprited":true,"spriteCssClass":"sx_9d1988","spriteMapCssClass":"sp__jZ4pRfiS3z"},"311942":{"sprited":true,"spriteCssClass":"sx_233b75","spriteMapCssClass":"sp__jZ4pRfiS3z"},"481153":{"sprited":true,"spriteCssClass":"sx_2e6ae2","spriteMapCssClass":"sp__jZ4pRfiS3z"},"548580":{"sprited":true,"spriteCssClass":"sx_1a5c06","spriteMapCssClass":"sp__jZ4pRfiS3z"},"701294":{"sprited":true,"spriteCssClass":"sx_b44d2e","spriteMapCssClass":"sp__jZ4pRfiS3z"},"701295":{"sprited":true,"spriteCssClass":"sx_0ada0e","spriteMapCssClass":"sp__jZ4pRfiS3z"},"122194":{"sprited":true,"spriteCssClass":"sx_5f9a36","spriteMapCssClass":"sp_fnP-WnuFakL"},"124199":{"sprited":true,"spriteCssClass":"sx_dcc546","spriteMapCssClass":"sp_fnP-WnuFakL"},"124209":{"sprited":true,"spriteCssClass":"sx_40877d","spriteMapCssClass":"sp_fnP-WnuFakL"},"363511":{"sprited":true,"spriteCssClass":"sx_8fb1e3","spriteMapCssClass":"sp_fnP-WnuFakL"},"363532":{"sprited":true,"spriteCssClass":"sx_e27c0c","spriteMapCssClass":"sp_fnP-WnuFakL"},"363585":{"sprited":true,"spriteCssClass":"sx_9314bd","spriteMapCssClass":"sp_fnP-WnuFakL"},"363586":{"sprited":true,"spriteCssClass":"sx_3be41e","spriteMapCssClass":"sp_fnP-WnuFakL"},"376185":{"sprited":true,"spriteCssClass":"sx_719e99","spriteMapCssClass":"sp_fnP-WnuFakL"},"378280":{"sprited":true,"spriteCssClass":"sx_b4f4b5","spriteMapCssClass":"sp_fnP-WnuFakL"},"385699":{"sprited":true,"spriteCssClass":"sx_4ffacf","spriteMapCssClass":"sp_fnP-WnuFakL"},"388066":{"sprited":true,"spriteCssClass":"sx_688a50","spriteMapCssClass":"sp_fnP-WnuFakL"},"390679":{"sprited":true,"spriteCssClass":"sx_0c4a8a","spriteMapCssClass":"sp_fnP-WnuFakL"},"394327":{"sprited":true,"spriteCssClass":"sx_cc1962","spriteMapCssClass":"sp_fnP-WnuFakL"},"403739":{"sprited":true,"spriteCssClass":"sx_561eb3","spriteMapCssClass":"sp_fnP-WnuFakL"},"403741":{"sprited":true,"spriteCssClass":"sx_47a1d0","spriteMapCssClass":"sp_fnP-WnuFakL"},"403742":{"sprited":true,"spriteCssClass":"sx_6f396b","spriteMapCssClass":"sp_fnP-WnuFakL"},"403743":{"sprited":true,"spriteCssClass":"sx_a820e2","spriteMapCssClass":"sp_fnP-WnuFakL"},"407178":{"sprited":true,"spriteCssClass":"sx_53ac4a","spriteMapCssClass":"sp_fnP-WnuFakL"},"407620":{"sprited":true,"spriteCssClass":"sx_c9ec1d","spriteMapCssClass":"sp_fnP-WnuFakL"},"478233":{"sprited":true,"spriteCssClass":"sx_87bb3c","spriteMapCssClass":"sp_qtp6H98Uhz5"},"478234":{"sprited":true,"spriteCssClass":"sx_382267","spriteMapCssClass":"sp_C3bCylIXdkU"},"480267":{"sprited":true,"spriteCssClass":"sx_43ac4a","spriteMapCssClass":"sp_fnP-WnuFakL"},"480789":{"sprited":true,"spriteCssClass":"sx_c349b6","spriteMapCssClass":"sp_fnP-WnuFakL"},"481013":{"sprited":true,"spriteCssClass":"sx_9f6333","spriteMapCssClass":"sp_fnP-WnuFakL"},"481883":{"sprited":true,"spriteCssClass":"sx_b023c5","spriteMapCssClass":"sp_fnP-WnuFakL"},"482773":{"sprited":true,"spriteCssClass":"sx_02f320","spriteMapCssClass":"sp_fnP-WnuFakL"},"483253":{"sprited":true,"spriteCssClass":"sx_f77afb","spriteMapCssClass":"sp__jZ4pRfiS3z"},"483254":{"sprited":true,"spriteCssClass":"sx_ca0b56","spriteMapCssClass":"sp_fnP-WnuFakL"},"483770":{"sprited":true,"spriteCssClass":"sx_6ed0c1","spriteMapCssClass":"sp_C3bCylIXdkU"},"484388":{"sprited":true,"spriteCssClass":"sx_f7c658","spriteMapCssClass":"sp_qtp6H98Uhz5"},"484864":{"sprited":true,"spriteCssClass":"sx_e17e35","spriteMapCssClass":"sp_C3bCylIXdkU"},"485091":{"sprited":true,"spriteCssClass":"sx_a60418","spriteMapCssClass":"sp_C3bCylIXdkU"},"489388":{"sprited":true,"spriteCssClass":"sx_acf78e","spriteMapCssClass":"sp__jZ4pRfiS3z"},"489947":{"sprited":true,"spriteCssClass":"sx_6ecba2","spriteMapCssClass":"sp_fnP-WnuFakL"},"489948":{"sprited":true,"spriteCssClass":"sx_bd5157","spriteMapCssClass":"sp_fnP-WnuFakL"},"490190":{"sprited":true,"spriteCssClass":"sx_445c14","spriteMapCssClass":"sp_fnP-WnuFakL"},"490191":{"sprited":true,"spriteCssClass":"sx_257ff9","spriteMapCssClass":"sp_fnP-WnuFakL"},"491228":{"sprited":true,"spriteCssClass":"sx_62f866","spriteMapCssClass":"sp_C3bCylIXdkU"},"491229":{"sprited":true,"spriteCssClass":"sx_b2b556","spriteMapCssClass":"sp_C3bCylIXdkU"},"491585":{"sprited":true,"spriteCssClass":"sx_28883d","spriteMapCssClass":"sp_C3bCylIXdkU"},"492168":{"sprited":true,"spriteCssClass":"sx_19ef12","spriteMapCssClass":"sp_C3bCylIXdkU"},"492197":{"sprited":true,"spriteCssClass":"sx_62d4e9","spriteMapCssClass":"sp_C3bCylIXdkU"},"492300":{"sprited":true,"spriteCssClass":"sx_944940","spriteMapCssClass":"sp__jZ4pRfiS3z"},"492491":{"sprited":true,"spriteCssClass":"sx_d7f1b3","spriteMapCssClass":"sp_qtp6H98Uhz5"},"492539":{"sprited":true,"spriteCssClass":"sx_c2f1a0","spriteMapCssClass":"sp_C3bCylIXdkU"},"492920":{"sprited":true,"spriteCssClass":"sx_e0cf9f","spriteMapCssClass":"sp_fnP-WnuFakL"},"492942":{"sprited":true,"spriteCssClass":"sx_115af3","spriteMapCssClass":"sp_fnP-WnuFakL"},"495429":{"sprited":true,"spriteCssClass":"sx_5c6414","spriteMapCssClass":"sp_fnP-WnuFakL"},"495440":{"sprited":true,"spriteCssClass":"sx_be2c3c","spriteMapCssClass":"sp_fnP-WnuFakL"},"495838":{"sprited":true,"spriteCssClass":"sx_ac2eef","spriteMapCssClass":"sp_fnP-WnuFakL"},"496752":{"sprited":true,"spriteCssClass":"sx_d30026","spriteMapCssClass":"sp_fnP-WnuFakL"},"496757":{"sprited":true,"spriteCssClass":"sx_d04d2a","spriteMapCssClass":"sp_fnP-WnuFakL"},"497676":{"sprited":true,"spriteCssClass":"sx_a65866","spriteMapCssClass":"sp_C3bCylIXdkU"},"498146":{"sprited":true,"spriteCssClass":"sx_925f5f","spriteMapCssClass":"sp_C3bCylIXdkU"},"499161":{"sprited":true,"spriteCssClass":"sx_f6e74d","spriteMapCssClass":"sp_C3bCylIXdkU"},"499666":{"sprited":true,"spriteCssClass":"sx_63d569","spriteMapCssClass":"sp_fnP-WnuFakL"},"499667":{"sprited":true,"spriteCssClass":"sx_7cf784","spriteMapCssClass":"sp_fnP-WnuFakL"},"499672":{"sprited":true,"spriteCssClass":"sx_474f96","spriteMapCssClass":"sp_fnP-WnuFakL"},"499673":{"sprited":true,"spriteCssClass":"sx_b5b0cc","spriteMapCssClass":"sp_fnP-WnuFakL"},"499674":{"sprited":true,"spriteCssClass":"sx_d29a05","spriteMapCssClass":"sp_fnP-WnuFakL"},"499675":{"sprited":true,"spriteCssClass":"sx_1544f0","spriteMapCssClass":"sp_fnP-WnuFakL"},"499680":{"sprited":true,"spriteCssClass":"sx_e137bc","spriteMapCssClass":"sp_fnP-WnuFakL"},"499681":{"sprited":true,"spriteCssClass":"sx_d8b8e5","spriteMapCssClass":"sp_fnP-WnuFakL"},"502062":{"sprited":true,"spriteCssClass":"sx_fa94f2","spriteMapCssClass":"sp_qtp6H98Uhz5"},"503180":{"sprited":true,"spriteCssClass":"sx_59c8b4","spriteMapCssClass":"sp_fnP-WnuFakL"},"504208":{"sprited":true,"spriteCssClass":"sx_41cb06","spriteMapCssClass":"sp__jZ4pRfiS3z"},"504839":{"sprited":true,"spriteCssClass":"sx_6f26e2","spriteMapCssClass":"sp_fnP-WnuFakL"},"505782":{"sprited":true,"spriteCssClass":"sx_874c06","spriteMapCssClass":"sp_fnP-WnuFakL"},"505789":{"sprited":true,"spriteCssClass":"sx_703969","spriteMapCssClass":"sp_fnP-WnuFakL"},"505794":{"sprited":true,"spriteCssClass":"sx_7f44a8","spriteMapCssClass":"sp_fnP-WnuFakL"},"509932":{"sprited":true,"spriteCssClass":"sx_d81682","spriteMapCssClass":"sp_C3bCylIXdkU"},"509934":{"sprited":true,"spriteCssClass":"sx_7ff47e","spriteMapCssClass":"sp_C3bCylIXdkU"},"512647":{"sprited":true,"spriteCssClass":"sx_d3750e","spriteMapCssClass":"sp_qtp6H98Uhz5"},"512844":{"sprited":true,"spriteCssClass":"sx_fdc86c","spriteMapCssClass":"sp_qtp6H98Uhz5"},"533909":{"sprited":true,"spriteCssClass":"sx_9e37f6","spriteMapCssClass":"sp_C3bCylIXdkU"},"541286":{"sprited":true,"spriteCssClass":"sx_a11f87","spriteMapCssClass":"sp_C3bCylIXdkU"},"541301":{"sprited":true,"spriteCssClass":"sx_76c03e","spriteMapCssClass":"sp_qtp6H98Uhz5"},"564391":{"sprited":true,"spriteCssClass":"sx_85c038","spriteMapCssClass":"sp_C3bCylIXdkU"},"564397":{"sprited":true,"spriteCssClass":"sx_8dc42d","spriteMapCssClass":"sp_C3bCylIXdkU"},"579031":{"sprited":true,"spriteCssClass":"sx_1fa89a","spriteMapCssClass":"sp_C3bCylIXdkU"},"580264":{"sprited":true,"spriteCssClass":"sx_838c12","spriteMapCssClass":"sp_C3bCylIXdkU"},"616586":{"sprited":true,"spriteCssClass":"sx_323dd7","spriteMapCssClass":"sp_C3bCylIXdkU"},"624751":{"sprited":true,"spriteCssClass":"sx_f2f0a1","spriteMapCssClass":"sp__jZ4pRfiS3z"},"647597":{"sprited":true,"spriteCssClass":"sx_2fd757","spriteMapCssClass":"sp_C3bCylIXdkU"},"656362":{"sprited":true,"spriteCssClass":"sx_dea851","spriteMapCssClass":"sp_C3bCylIXdkU"},"660688":{"sprited":true,"spriteCssClass":"sx_4c9055","spriteMapCssClass":"sp_C3bCylIXdkU"},"681203":{"sprited":true,"spriteCssClass":"sx_af6044","spriteMapCssClass":"sp__jZ4pRfiS3z"},"689699":{"sprited":true,"spriteCssClass":"sx_266536","spriteMapCssClass":"sp_C3bCylIXdkU"},"816818":{"sprited":true,"spriteCssClass":"sx_2255eb","spriteMapCssClass":"sp_C3bCylIXdkU"},"875292":{"sprited":true,"spriteCssClass":"sx_9e1dd5","spriteMapCssClass":"sp_C3bCylIXdkU"},"1104209":{"sprited":true,"spriteCssClass":"sx_956ee4","spriteMapCssClass":"sp_C3bCylIXdkU"}});});requireLazy(["gkx"],function(gkx){gkx.add({"1073500":{"result":false,"hash":"AT4Jyir7Mgzbbd58"},"676837":{"result":false,"hash":"AT604YAyrrJTwMjb"},"676920":{"result":false,"hash":"AT744yQwyoKPtTHa"},"676921":{"result":false,"hash":"AT7cy_2GASnkaVs0"},"676922":{"result":false,"hash":"AT6c0WLtAZqDW8hv"},"678686":{"result":false,"hash":"AT6Z3WB8MDV-x0QW"},"708253":{"result":false,"hash":"AT7iwc8-tTD3-omt"},"946894":{"result":false,"hash":"AT49SIjjniK7xiDx"},"1113247":{"result":false,"hash":"AT40KdgRILQ9wM-U"},"1167394":{"result":false,"hash":"AT7fY9FgGNIoL9hg"},"1223330":{"result":false,"hash":"AT56Q__QlVLzCZKh"},"676864":{"result":false,"hash":"AT6ewaf1W9ZuggTa"},"676940":{"result":false,"hash":"AT4A7AOzvUnIapvb"},"863760":{"result":false,"hash":"AT7YLJ-tk-JKYtiR"},"996939":{"result":false,"hash":"AT4-H4F8OLIV_ZC1"},"996940":{"result":false,"hash":"AT78uu9fyJlbbZvM"},"1236104":{"result":false,"hash":"AT5finEajNOlk5aw"},"678726":{"result":false,"hash":"AT5fKzosKny0sbAw"},"678820":{"result":true,"hash":"AT4VPqeSgbsE7N6Y"},"938344":{"result":false,"hash":"AT7UmUS22WcHChkK"},"1051420":{"result":false,"hash":"AT4h24oNiZoHEBKa"},"1064552":{"result":false,"hash":"AT4dcc24Z-VzJQnW"},"1119060":{"result":true,"hash":"AT5fMiBdmulY1A8m"},"1243461":{"result":false,"hash":"AT5slxYxxlkt2wkv"},"764802":{"result":true,"hash":"AT54MM4WAJhu_V97"},"676840":{"result":true,"hash":"AT6UR4a6NVpNXVAR"},"952891":{"result":false,"hash":"AT6SBkfQiqJGmfE5"},"1008528":{"result":true,"hash":"AT60EtUDIERA6aEo"},"1070056":{"result":true,"hash":"AT7K-r566rQ6-Uo9"},"1081266":{"result":true,"hash":"AT6qb14ZAhsz0qJC"},"1081267":{"result":true,"hash":"AT54GP6DUDZ5KUJ2"},"1111356":{"result":false,"hash":"AT6sETGz_scMeXGF"},"1220172":{"result":false,"hash":"AT4CGXANr0xLSxkW"},"1228397":{"result":false,"hash":"AT4HfqUKpckEnpEW"},"1228929":{"result":false,"hash":"AT64ifZ9FF8AK9Wc"},"1243442":{"result":false,"hash":"AT4EMnKZY6r1tSO4"},"676842":{"result":false,"hash":"AT6wjKZVEATcyHIH"},"676843":{"result":false,"hash":"AT7ywmyel5Ie83DV"},"676845":{"result":false,"hash":"AT4KHpJFJaqw-OB0"},"676848":{"result":false,"hash":"AT7E2p_u5MOEP2pn"},"676906":{"result":false,"hash":"AT675Z50b0CzL3UC"},"678262":{"result":true,"hash":"AT4Fvgjk591NdID8"},"678359":{"result":true,"hash":"AT7j7lMV4aZFikad"},"678655":{"result":false,"hash":"AT472C8Dp0xCz_Ce"},"678680":{"result":false,"hash":"AT5zH2bUjwrJesge"},"709647":{"result":false,"hash":"AT7Xon3qtxrNgkTs"},"729629":{"result":false,"hash":"AT7me1fUFfkSLWRK"},"729630":{"result":false,"hash":"AT6m02F_M73pkaJJ"},"729631":{"result":false,"hash":"AT7bfwkycVB3GNTq"},"761432":{"result":true,"hash":"AT7L1OFmXxt9ORvm"},"764838":{"result":true,"hash":"AT6QVW42PmSSMRi5"},"819876":{"result":true,"hash":"AT5eVNFQnVJ-slgU"},"821827":{"result":true,"hash":"AT6xd62WUD2cgB6z"},"823030":{"result":false,"hash":"AT7WVj0N0sQt92EA"},"823031":{"result":true,"hash":"AT4PfGA5n5J8KgqI"},"845716":{"result":true,"hash":"AT69NWGQ-PsUp5Vf"},"893099":{"result":false,"hash":"AT6l36UIxEZD2uqB"},"894204":{"result":false,"hash":"AT7jYF10sI2aNpz0"},"897012":{"result":false,"hash":"AT7a-X4Sm-BDChPw"},"915776":{"result":true,"hash":"AT6TNtzOW5Cmlxgn"},"926112":{"result":false,"hash":"AT7a1jDBx8uYsvSe"},"991383":{"result":true,"hash":"AT5aBD8hEDOQJhHN"},"991384":{"result":true,"hash":"AT7imxGrxt2eLTZy"},"993687":{"result":true,"hash":"AT5HsOMuIvSCgrfO"},"1001116":{"result":false,"hash":"AT75MxUQ4ldpZlTv"},"1003922":{"result":false,"hash":"AT4rB8Oe68xQHg4X"},"1004256":{"result":true,"hash":"AT4BZ0SfufX_Ap45"},"1015488":{"result":false,"hash":"AT4T7MeXOSCup3TW"},"1029033":{"result":false,"hash":"AT5AVYO9YW7qOySA"},"1030152":{"result":false,"hash":"AT4ddBVyiAE0VUAs"},"1070695":{"result":false,"hash":"AT5ESo4h1dJOKcda"},"1072872":{"result":false,"hash":"AT56BwEKSx7vVoSq"},"1082995":{"result":false,"hash":"AT67R1BI4Q7JA4de"},"1087759":{"result":false,"hash":"AT6_nXUTfuZgQttJ"},"1096096":{"result":false,"hash":"AT46jQGH5IdoWHDc"},"1099893":{"result":false,"hash":"AT7TqxItRDrhOyLf"},"1104217":{"result":true,"hash":"AT7EWmquc_GVnfCu"},"1105608":{"result":true,"hash":"AT6h7heUpZR9t0uB"},"1107484":{"result":false,"hash":"AT6tDUR5skD9HTzv"},"1115188":{"result":false,"hash":"AT5DPpRoG_UpwTj4"},"1130462":{"result":true,"hash":"AT6oJXIWjEMIxVUp"},"1150433":{"result":false,"hash":"AT4Z1hqFIVFJxWgz"},"1151941":{"result":false,"hash":"AT5Dp5YfZv9up-0D"},"1165940":{"result":false,"hash":"AT5gy381-1dO1Js2"},"1220350":{"result":false,"hash":"AT4ubX1XtdkBjMVD"},"1220640":{"result":true,"hash":"AT6CzJEFnH2HfPDj"},"1220653":{"result":false,"hash":"AT4_QkT4U85yvIu5"},"1220730":{"result":false,"hash":"AT6V7PvUDoL94etm"},"1234255":{"result":false,"hash":"AT7u9SCGvkiheYoX"}});});requireLazy(["qex"],function(qex){qex.add({"812260":{"r":null},"815972":{"r":null},"815973":{"r":null},"1164632":{"r":null},"1209064":{"r":null},"706596":{"r":null},"835044":{"r":null},"863217":{"r":null},"1015355":{"r":null},"1027551":{"r":null},"1061827":{"r":null},"1064124":{"r":null},"1065431":{"r":null},"1065432":{"r":null},"1071294":{"r":null},"1081237":{"r":null},"1121435":{"r":null},"1148127":{"r":null},"1148192":{"r":null},"1148215":{"r":null},"1154326":{"r":null},"1184281":{"r":null},"1185074":{"r":null},"1192726":{"r":null},"1201820":{"r":null},"1213321":{"r":null},"1222085":{"r":null},"1223865":{"r":null},"1224877":{"r":null},"1231317":{"r":null},"1231318":{"r":null},"1231324":{"r":null},"1231374":{"r":null},"1232517":{"r":null},"1211266":{"r":null}});});require("TimeSliceImpl").guard(function(){(require("ServerJSDefine")).handleDefines([["cr:696703",[],{"__rc":[null,"Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:708886",["EventProfilerImpl"],{"__rc":["EventProfilerImpl","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:717822",["TimeSliceImpl"],{"__rc":["TimeSliceImpl","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:806696",["clearTimeoutBlue"],{"__rc":["clearTimeoutBlue","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:807042",["setTimeoutBlue"],{"__rc":["setTimeoutBlue","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:896462",["setIntervalAcrossTransitionsBlue"],{"__rc":["setIntervalAcrossTransitionsBlue","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:925100",["RunBlue"],{"__rc":["RunBlue","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:986633",["setTimeoutAcrossTransitionsBlue"],{"__rc":["setTimeoutAcrossTransitionsBlue","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1003267",["clearIntervalBlue"],{"__rc":["clearIntervalBlue","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1100101",["requestAnimationFrameAcrossTransitionsSimple"],{"__rc":["requestAnimationFrameAcrossTransitionsSimple","Aa1r72h98VDgFn-yQ6TQafecGgfgXOtG5bEoBqbFzSAdcBvugKTglM0A2TMar6RxY8vWio8"]},-1],["cr:896461",["setIntervalBlue"],{"__rc":["setIntervalBlue","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1000292",["BanzaiNew"],{"__rc":["BanzaiNew","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:729414",[],{"__rc":[null,"Aa3Ac6N09hDxTdV44G2F-Z9N4XWaVojMGZAR9fdxrOFsTXNozJGGoZzCf61L0mZIgF_Qy6WsPhoaZ4qyfAcE"]},-1],["cr:692209",["cancelIdleCallbackBlue"],{"__rc":["cancelIdleCallbackBlue","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:695720",["SnappyCompressUtil"],{"__rc":["SnappyCompressUtil","Aa3b0J998mJDstPNQxQbEmoDAMC5jQD76gVmc5I5K_hrg4TjaJCeto3RqL2AfX6ytEAq2NvIP0K6KB5kh_RnG1Bq8_4"]},-1],["URLFragmentPreludeConfig",[],{"hashtagRedirect":true,"fragBlacklist":["nonce","access_token","oauth_token","xs","checkpoint_data","code"]},137],["BigPipeExperiments",[],{"link_images_to_pagelets":false,"enable_bigpipe_plugins":false},907],["BootloaderConfig",[],{"jsRetries":null,"jsRetryAbortNum":2,"jsRetryAbortTime":5,"payloadEndpointURI":"https:\/\/www.facebook.com\/ajax\/bootloader-endpoint\/","preloadBE":false,"assumeNotNonblocking":false,"trackUnpredictedBEResources":true,"shouldCoalesceModuleRequestsMadeInSameTick":true,"staggerJsDownloads":false,"preloader_num_preloads":0,"preloader_preload_after_dd":false,"preloader_num_loads":1,"preloader_enabled":false,"retryQueuedBootloads":false,"silentDups":false,"asyncPreloadBoost":true},329],["CSSLoaderConfig",[],{"timeout":5000,"modulePrefix":"BLCSS:"},619],["CookieCoreConfig",[],{"a11y":{},"act":{},"c_user":{},"dpr":{"t":604800},"js_ver":{"t":604800},"locale":{"t":604800},"m_pixel_ratio":{"t":604800},"noscript":{},"pnl_data2":{"t":2},"presence":{},"sfau":{},"wd":{"t":604800},"x-referer":{},"x-src":{"t":1}},2104],["CurrentCommunityInitialData",[],{},490],["CurrentEnvironment",[],{"facebookdotcom":true,"messengerdotcom":false},827],["CurrentUserInitialData",[],{"USER_ID":"0","ACCOUNT_ID":"0","NAME":"","SHORT_NAME":null,"IS_MESSENGER_ONLY_USER":false,"IS_DEACTIVATED_ALLOWED_ON_MESSENGER":false,"APP_ID":"256281040558"},270],["DTSGInitialData",[],{},258],["ISB",[],{},330],["LSD",[],{"token":"AVpJ6Pvr"},323],["ServerNonce",[],{"ServerNonce":"uxofry1NAr5nFmkkkpxeQJ"},141],["SiteData",[],{"server_revision":1001588497,"client_revision":1001588497,"tier":"","push_phase":"C3","pkg_cohort":"PHASED:DEFAULT","pr":1,"haste_site":"www","be_one_ahead":false,"ir_on":true,"is_rtl":false,"is_comet":false,"hsi":"6779882246364404230-0","spin":4,"__spin_r":1001588497,"__spin_b":"trunk","__spin_t":1578564347,"vip":"179.60.192.36"},317],["SprinkleConfig",[],{"param_name":"jazoest","version":2,"should_randomize":false},2111],["UserAgentData",[],{"browserArchitecture":"32","browserFullVersion":"7.67.0","browserMinorVersion":67,"browserName":"Curl","browserVersion":7,"deviceName":"Unknown","engineName":"Unknown","engineVersion":null,"platformArchitecture":"32","platformName":"Unknown","platformVersion":null,"platformFullVersion":null},527],["PromiseUsePolyfillSetImmediateGK",[],{"www_always_use_polyfill_setimmediate":false},2190],["DataStoreConfig",[],{"expandoKey":"__FB_STORE","useExpando":true},2915],["CookieCoreLoggingConfig",[],{"maximumIgnorableStallMs":16.67,"sampleRate":9.7e-5,"sampleRateClassic":1.0e-10,"sampleRateFastStale":1.0e-8},3401],["ImmediateImplementationExperiments",[],{"prefer_message_channel":true},3419],["DTSGInitData",[],{"token":"","async_get_token":""},3515],["UriNeedRawQuerySVConfig",[],{"uris":["dms.netmng.com","doubleclick.net","r.msn.com","watchit.sky.com","graphite.instagram.com","www.kfc.co.th","learn.pantheon.io","www.landmarkshops.in","www.ncl.com","s0.wp.com","www.tatacliq.com","bs.serving-sys.com","kohls.com","lazada.co.th","xg4ken.com","technopark.ru","officedepot.com.mx","bestbuy.com.mx"]},3871],["InitialCookieConsent",[],{"deferCookies":false,"noCookies":false,"shouldShowCookieBanner":false},4328],["TrustedTypesConfig",[],{"useTrustedTypes":false,"reportOnly":true},4548],["ArtilleryExperiments",[],{"artillery_static_resources_pagelet_attribution":false,"artillery_timeslice_compressed_data":false,"artillery_miny_client_payload":false,"artillery_prolong_page_tracing":false,"artillery_navigation_timing_level_2":false,"artillery_profiler_on":false,"artillery_merge_max_distance_sec":1,"artillery_merge_max_duration_sec":1,"user_timing":false},1237],["EventConfig",[],{"sampling":{"bandwidth":0,"play":0,"playing":0,"progress":0,"pause":0,"ended":0,"seeked":0,"seeking":0,"waiting":0,"loadedmetadata":0,"canplay":0,"selectionchange":0,"change":0,"timeupdate":2000000,"adaptation":0,"focus":0,"blur":0,"load":0,"error":0,"message":0,"abort":0,"storage":0,"scroll":200000,"mousemove":20000,"mouseover":10000,"mouseout":10000,"mousewheel":1,"MSPointerMove":10000,"keydown":0.1,"click":0.02,"mouseup":0.02,"__100ms":0.001,"__default":5000,"__min":100,"__interactionDefault":200,"__eventDefault":100000},"page_sampling_boost":1,"interaction_regexes":{"BlueBarAccountChevronMenu":" _5lxs(?: .*)?$","BlueBarHomeButton":" _bluebarLinkHome__interaction-root(?: .*)?$","BlueBarProfileLink":" _1k67(?: .*)?$","ReactComposerSproutMedia":" _1pnt(?: .*)?$","ReactComposerSproutAlbum":" _1pnu(?: .*)?$","ReactComposerSproutNote":" _3-9x(?: .*)?$","ReactComposerSproutLocation":" _1pnv(?: .*)?$","ReactComposerSproutActivity":" _1pnz(?: .*)?$","ReactComposerSproutPeople":" _1pn-(?: .*)?$","ReactComposerSproutLiveVideo":" _5tv7(?: .*)?$","ReactComposerSproutMarkdown":" _311p(?: .*)?$","ReactComposerSproutFormattedText":" _mwg(?: .*)?$","ReactComposerSproutSticker":" _2vri(?: .*)?$","ReactComposerSproutSponsor":" _5t5q(?: .*)?$","ReactComposerSproutEllipsis":" _1gr3(?: .*)?$","ReactComposerSproutContactYourRepresentative":" _3cnv(?: .*)?$","ReactComposerSproutFunFact":" _2_xs(?: .*)?$","TextExposeSeeMoreLink":" see_more_link(?: .*)?$","SnowliftBigCloseButton":"(?: _xlt(?: .*)? _418x(?: .*)?$| _418x(?: .*)? _xlt(?: .*)?$)","SnowliftPrevPager":"(?: snowliftPager(?: .*)? prev(?: .*)?$| prev(?: .*)? snowliftPager(?: .*)?$)","SnowliftNextPager":"(?: snowliftPager(?: .*)? next(?: .*)?$| next(?: .*)? snowliftPager(?: .*)?$)","SnowliftFullScreenButton":"#fbPhotoSnowliftFullScreenSwitch( .+)*","PrivacySelectorMenu":"(?: _57di(?: .*)? _2wli(?: .*)?$| _2wli(?: .*)? _57di(?: .*)?$)","ReactComposerFeedXSprouts":" _nh6(?: .*)?$","SproutsComposerStatusTab":" _sg1(?: .*)?$","SproutsComposerLiveVideoTab":" _sg1(?: .*)?$","SproutsComposerAlbumTab":" _sg1(?: .*)?$","composerAudienceSelector":" _ej0(?: .*)?$","FeedHScrollAttachmentsPrevPager":" _1qqy(?: .*)?$","FeedHScrollAttachmentsNextPager":" _1qqz(?: .*)?$","DockChatTabFlyout":" fbDockChatTabFlyout(?: .*)?$","PrivacyLiteJewel":" _59fc(?: .*)?$","ActorSelector":" _6vh(?: .*)?$","LegacyMentionsInput":"(?: ReactLegacyMentionsInput(?: .*)? uiMentionsInput(?: .*)? _2xwx(?: .*)?$| uiMentionsInput(?: .*)? ReactLegacyMentionsInput(?: .*)? _2xwx(?: .*)?$| _2xwx(?: .*)? ReactLegacyMentionsInput(?: .*)? uiMentionsInput(?: .*)?$| ReactLegacyMentionsInput(?: .*)? _2xwx(?: .*)? uiMentionsInput(?: .*)?$| uiMentionsInput(?: .*)? _2xwx(?: .*)? ReactLegacyMentionsInput(?: .*)?$| _2xwx(?: .*)? uiMentionsInput(?: .*)? ReactLegacyMentionsInput(?: .*)?$)","UFIActionLinksEmbedLink":" _2g1w(?: .*)?$","UFIPhotoAttachLink":" UFIPhotoAttachLinkWrapper(?: .*)?$","UFIMentionsInputProxy":" _1osa(?: .*)?$","UFIMentionsInputDummy":" _1osc(?: .*)?$","UFIOrderingModeSelector":" _3scp(?: .*)?$","UFIPager":"(?: UFIPagerRow(?: .*)? UFIRow(?: .*)?$| UFIRow(?: .*)? UFIPagerRow(?: .*)?$)","UFIReplyRow":"(?: UFIReplyRow(?: .*)? UFICommentReply(?: .*)?$| UFICommentReply(?: .*)? UFIReplyRow(?: .*)?$)","UFIReplySocialSentence":" UFIReplySocialSentenceRow(?: .*)?$","UFIShareLink":" _5f9b(?: .*)?$","UFIStickerButton":" UFICommentStickerButton(?: .*)?$","MentionsInput":" _5yk1(?: .*)?$","FantaChatTabRoot":" _3_9e(?: .*)?$","SnowliftViewableRoot":" _2-sx(?: .*)?$","ReactBlueBarJewelButton":" _5fwr(?: .*)?$","UFIReactionsDialogLayerImpl":" _1oxk(?: .*)?$","UFIReactionsLikeLinkImpl":" _4x9_(?: .*)?$","UFIReactionsLinkImplRoot":" _khz(?: .*)?$","Reaction":" _iuw(?: .*)?$","UFIReactionsMenuImpl":" _iu-(?: .*)?$","UFIReactionsSpatialReactionIconContainer":" _1fq9(?: .*)?$","VideoComponentPlayButton":" _bsl(?: .*)?$","FeedOptionsPopover":" _b1e(?: .*)?$","UFICommentLikeCount":" UFICommentLikeButton(?: .*)?$","UFICommentLink":" _5yxe(?: .*)?$","ChatTabComposerInputContainer":" _552h(?: .*)?$","ChatTabHeader":" _15p4(?: .*)?$","DraftEditor":" _5rp7(?: .*)?$","ChatSideBarDropDown":" _5vm9(?: .*)?$","SearchBox":" _539-(?: .*)?$","ChatSideBarLink":" _55ln(?: .*)?$","MessengerSearchTypeahead":" _3rh8(?: .*)?$","NotificationListItem":" _33c(?: .*)?$","MessageJewelListItem":" messagesContent(?: .*)?$","Messages_Jewel_Button":" _3eo8(?: .*)?$","Notifications_Jewel_Button":" _3eo9(?: .*)?$","snowliftopen":" _342u(?: .*)?$","NoteTextSeeMoreLink":" _3qd_(?: .*)?$","fbFeedOptionsPopover":" _1he6(?: .*)?$","Requests_Jewel_Button":" _3eoa(?: .*)?$","UFICommentActionLinkAjaxify":" _15-3(?: .*)?$","UFICommentActionLinkRedirect":" _15-6(?: .*)?$","UFICommentActionLinkDispatched":" _15-7(?: .*)?$","UFICommentCloseButton":" _36rj(?: .*)?$","UFICommentActionsRemovePreview":" _460h(?: .*)?$","UFICommentActionsReply":" _460i(?: .*)?$","UFICommentActionsSaleItemMessage":" _460j(?: .*)?$","UFICommentActionsAcceptAnswer":" _460k(?: .*)?$","UFICommentActionsUnacceptAnswer":" _460l(?: .*)?$","UFICommentReactionsLikeLink":" _3-me(?: .*)?$","UFICommentMenu":" _1-be(?: .*)?$","UFIMentionsInputFallback":" _289b(?: .*)?$","UFIMentionsInputComponent":" _289c(?: .*)?$","UFIMentionsInputProxyInput":" _432z(?: .*)?$","UFIMentionsInputProxyDummy":" _432-(?: .*)?$","UFIPrivateReplyLinkMessage":" _14hj(?: .*)?$","UFIPrivateReplyLinkSeeReply":" _14hk(?: .*)?$","ChatCloseButton":" _4vu4(?: .*)?$","ChatTabComposerPhotoUploader":" _13f-(?: .*)?$","ChatTabComposerGroupPollingButton":" _13f_(?: .*)?$","ChatTabComposerGames":" _13ga(?: .*)?$","ChatTabComposerPlan":" _13gb(?: .*)?$","ChatTabComposerFileUploader":" _13gd(?: .*)?$","ChatTabStickersButton":" _13ge(?: .*)?$","ChatTabComposerGifButton":" _13gf(?: .*)?$","ChatTabComposerEmojiPicker":" _13gg(?: .*)?$","ChatTabComposerLikeButton":" _13gi(?: .*)?$","ChatTabComposerP2PButton":" _13gj(?: .*)?$","ChatTabComposerQuickCam":" _13gk(?: .*)?$","ChatTabHeaderAudioRTCButton":" _461a(?: .*)?$","ChatTabHeaderVideoRTCButton":" _461b(?: .*)?$","ChatTabHeaderOptionsButton":" _461_(?: .*)?$","ChatTabHeaderAddToThreadButton":" _4620(?: .*)?$","ReactComposerMediaSprout":" _fk5(?: .*)?$","UFIReactionsBlingSocialSentenceComments":" _-56(?: .*)?$","UFIReactionsBlingSocialSentenceSeens":" _2x0l(?: .*)?$","UFIReactionsBlingSocialSentenceShares":" _2x0m(?: .*)?$","UFIReactionsBlingSocialSentenceViews":" _-5c(?: .*)?$","UFIReactionsBlingSocialSentence":" _-5d(?: .*)?$","UFIReactionsSocialSentence":" _1vaq(?: .*)?$","VideoFullscreenButton":" _39ip(?: .*)?$","Tahoe":" _400z(?: .*)?$","TahoeFromVideoPlayer":" _1vek(?: .*)?$","TahoeFromVideoLink":" _2-40(?: .*)?$","TahoeFromPhoto":" _2ju5(?: .*)?$","FBStoryTrayItem":" _1fvw(?: .*)?$","Mobile_Feed_Jewel_Button":"#feed_jewel( .+)*","Mobile_Requests_Jewel_Button":"#requests_jewel( .+)*","Mobile_Messages_Jewel_Button":"#messages_jewel( .+)*","Mobile_Notifications_Jewel_Button":"#notifications_jewel( .+)*","Mobile_Search_Jewel_Button":"#search_jewel( .+)*","Mobile_Bookmarks_Jewel_Button":"#bookmarks_jewel( .+)*","Mobile_Feed_UFI_Comment_Button_Permalink":" _l-a(?: .*)?$","Mobile_Feed_UFI_Comment_Button_Flyout":" _4qeq(?: .*)?$","Mobile_Feed_UFI_Token_Bar_Flyout":" _4qer(?: .*)?$","Mobile_Feed_UFI_Token_Bar_Permalink":" _4-09(?: .*)?$","Mobile_UFI_Share_Button":" _15kr(?: .*)?$","Mobile_Feed_Photo_Permalink":" _1mh-(?: .*)?$","Mobile_Feed_Video_Permalink":" _65g_(?: .*)?$","Mobile_Feed_Profile_Permalink":" _4kk6(?: .*)?$","Mobile_Feed_Story_Permalink":" _26yo(?: .*)?$","Mobile_Feed_Page_Permalink":" _4e81(?: .*)?$","Mobile_Feed_Group_Permalink":" _20u1(?: .*)?$","Mobile_Feed_Event_Permalink":" _20u0(?: .*)?$","ProfileIntroCardAddFeaturedMedia":" _30qr(?: .*)?$","ProfileSectionAbout":" _84wb(?: .*)?$","ProfileSectionAllRelationships":" _84wc(?: .*)?$","ProfileSectionAtWork":" _2fnv(?: .*)?$","ProfileSectionContactBasic":" _84vf(?: .*)?$","ProfileSectionEducation":" _84vh(?: .*)?$","ProfileSectionOverview":" _84vj(?: .*)?$","ProfileSectionPlaces":" _84vg(?: .*)?$","ProfileSectionYearOverviews":" _84vi(?: .*)?$","IntlPolyglotHomepage":" _Interaction__IntlPolyglotVoteActivityCardButton(?: .*)?$","ProtonElementSelection":" _67ft(?: .*)?$"},"interaction_boost":{"SnowliftPrevPager":0.2,"SnowliftNextPager":0.2,"ChatSideBarLink":2,"MessengerSearchTypeahead":2,"Messages_Jewel_Button":2.5,"Notifications_Jewel_Button":1.5,"Tahoe":30,"ProtonElementSelection":4},"event_types":{"BlueBarAccountChevronMenu":["click"],"BlueBarHomeButton":["click"],"BlueBarProfileLink":["click"],"ReactComposerSproutMedia":["click"],"ReactComposerSproutAlbum":["click"],"ReactComposerSproutNote":["click"],"ReactComposerSproutLocation":["click"],"ReactComposerSproutActivity":["click"],"ReactComposerSproutPeople":["click"],"ReactComposerSproutLiveVideo":["click"],"ReactComposerSproutMarkdown":["click"],"ReactComposerSproutFormattedText":["click"],"ReactComposerSproutSticker":["click"],"ReactComposerSproutSponsor":["click"],"ReactComposerSproutEllipsis":["click"],"ReactComposerSproutContactYourRepresentative":["click"],"ReactComposerSproutFunFact":["click"],"TextExposeSeeMoreLink":["click"],"SnowliftBigCloseButton":["click"],"SnowliftPrevPager":["click"],"SnowliftNextPager":["click"],"SnowliftFullScreenButton":["click"],"PrivacySelectorMenu":["click"],"ReactComposerFeedXSprouts":["click"],"SproutsComposerStatusTab":["click"],"SproutsComposerLiveVideoTab":["click"],"SproutsComposerAlbumTab":["click"],"composerAudienceSelector":["click"],"FeedHScrollAttachmentsPrevPager":["click"],"FeedHScrollAttachmentsNextPager":["click"],"DockChatTabFlyout":["click"],"PrivacyLiteJewel":["click"],"ActorSelector":["click"],"LegacyMentionsInput":["click"],"UFIActionLinksEmbedLink":["click"],"UFIPhotoAttachLink":["click"],"UFIMentionsInputProxy":["click"],"UFIMentionsInputDummy":["click"],"UFIOrderingModeSelector":["click"],"UFIPager":["click"],"UFIReplyRow":["click"],"UFIReplySocialSentence":["click"],"UFIShareLink":["click"],"UFIStickerButton":["click"],"MentionsInput":["click"],"FantaChatTabRoot":["click"],"SnowliftViewableRoot":["click"],"ReactBlueBarJewelButton":["click"],"UFIReactionsDialogLayerImpl":["click"],"UFIReactionsLikeLinkImpl":["click"],"UFIReactionsLinkImplRoot":["click"],"Reaction":["click"],"UFIReactionsMenuImpl":["click"],"UFIReactionsSpatialReactionIconContainer":["click"],"VideoComponentPlayButton":["click"],"FeedOptionsPopover":["click"],"UFICommentLikeCount":["click"],"UFICommentLink":["click"],"ChatTabComposerInputContainer":["click"],"ChatTabHeader":["click"],"DraftEditor":["click"],"ChatSideBarDropDown":["click"],"SearchBox":["click"],"ChatSideBarLink":["mouseup"],"MessengerSearchTypeahead":["click"],"NotificationListItem":["click"],"MessageJewelListItem":["click"],"Messages_Jewel_Button":["click"],"Notifications_Jewel_Button":["click"],"snowliftopen":["click"],"NoteTextSeeMoreLink":["click"],"fbFeedOptionsPopover":["click"],"Requests_Jewel_Button":["click"],"UFICommentActionLinkAjaxify":["click"],"UFICommentActionLinkRedirect":["click"],"UFICommentActionLinkDispatched":["click"],"UFICommentCloseButton":["click"],"UFICommentActionsRemovePreview":["click"],"UFICommentActionsReply":["click"],"UFICommentActionsSaleItemMessage":["click"],"UFICommentActionsAcceptAnswer":["click"],"UFICommentActionsUnacceptAnswer":["click"],"UFICommentReactionsLikeLink":["click"],"UFICommentMenu":["click"],"UFIMentionsInputFallback":["click"],"UFIMentionsInputComponent":["click"],"UFIMentionsInputProxyInput":["click"],"UFIMentionsInputProxyDummy":["click"],"UFIPrivateReplyLinkMessage":["click"],"UFIPrivateReplyLinkSeeReply":["click"],"ChatCloseButton":["click"],"ChatTabComposerPhotoUploader":["click"],"ChatTabComposerGroupPollingButton":["click"],"ChatTabComposerGames":["click"],"ChatTabComposerPlan":["click"],"ChatTabComposerFileUploader":["click"],"ChatTabStickersButton":["click"],"ChatTabComposerGifButton":["click"],"ChatTabComposerEmojiPicker":["click"],"ChatTabComposerLikeButton":["click"],"ChatTabComposerP2PButton":["click"],"ChatTabComposerQuickCam":["click"],"ChatTabHeaderAudioRTCButton":["click"],"ChatTabHeaderVideoRTCButton":["click"],"ChatTabHeaderOptionsButton":["click"],"ChatTabHeaderAddToThreadButton":["click"],"ReactComposerMediaSprout":["click"],"UFIReactionsBlingSocialSentenceComments":["click"],"UFIReactionsBlingSocialSentenceSeens":["click"],"UFIReactionsBlingSocialSentenceShares":["click"],"UFIReactionsBlingSocialSentenceViews":["click"],"UFIReactionsBlingSocialSentence":["click"],"UFIReactionsSocialSentence":["click"],"VideoFullscreenButton":["click"],"Tahoe":["click"],"TahoeFromVideoPlayer":["click"],"TahoeFromVideoLink":["click"],"TahoeFromPhoto":["click"],"":["click"],"FBStoryTrayItem":["click"],"Mobile_Feed_Jewel_Button":["click"],"Mobile_Requests_Jewel_Button":["click"],"Mobile_Messages_Jewel_Button":["click"],"Mobile_Notifications_Jewel_Button":["click"],"Mobile_Search_Jewel_Button":["click"],"Mobile_Bookmarks_Jewel_Button":["click"],"Mobile_Feed_UFI_Comment_Button_Permalink":["click"],"Mobile_Feed_UFI_Comment_Button_Flyout":["click"],"Mobile_Feed_UFI_Token_Bar_Flyout":["click"],"Mobile_Feed_UFI_Token_Bar_Permalink":["click"],"Mobile_UFI_Share_Button":["click"],"Mobile_Feed_Photo_Permalink":["click"],"Mobile_Feed_Video_Permalink":["click"],"Mobile_Feed_Profile_Permalink":["click"],"Mobile_Feed_Story_Permalink":["click"],"Mobile_Feed_Page_Permalink":["click"],"Mobile_Feed_Group_Permalink":["click"],"Mobile_Feed_Event_Permalink":["click"],"ProfileIntroCardAddFeaturedMedia":["click"],"ProfileSectionAbout":["click"],"ProfileSectionAllRelationships":["click"],"ProfileSectionAtWork":["click"],"ProfileSectionContactBasic":["click"],"ProfileSectionEducation":["click"],"ProfileSectionOverview":["click"],"ProfileSectionPlaces":["click"],"ProfileSectionYearOverviews":["click"],"IntlPolyglotHomepage":["click"],"ProtonElementSelection":["click"]},"manual_instrumentation":false,"profile_eager_execution":true,"disable_heuristic":true,"disable_event_profiler":false},1726],["AdsInterfacesSessionConfig",[],{},2393],["TimeSliceInteractionSV",[],{"on_demand_reference_counting":true,"on_demand_profiling_counters":true,"default_rate":1000,"lite_default_rate":100,"interaction_to_lite_coinflip":{"ADS_INTERFACES_INTERACTION":0,"ads_perf_scenario":0,"ads_wait_time":0,"Event":1,"video_psr":0,"video_stall":0},"interaction_to_coinflip":{"ADS_INTERFACES_INTERACTION":1,"ads_perf_scenario":1,"ads_wait_time":1,"video_psr":1000000,"video_stall":2500000,"Event":100,"pixelcloud_view_performance":25,"intern_notify_inbox_page_load":10,"intern_notify_jewel_list_load":10,"tasks_initial_page_load":1,"watch_carousel_left_scroll":1,"watch_carousel_right_scroll":1,"watch_sections_load_more":1,"watch_discover_scroll":1,"fbpkg_ui":1,"sevmanager_powersearch_initial_page_load":10,"network_ui":1,"daiquery_interactive_query":1},"enable_heartbeat":true,"maxBlockMergeDuration":0,"maxBlockMergeDistance":0,"enable_banzai_stream":true,"user_timing_coinflip":50,"banzai_stream_coinflip":1,"compression_enabled":true,"ref_counting_fix":false,"ref_counting_cont_fix":false,"also_record_new_timeslice_format":false,"force_async_request_tracing_on":false},2609],["BanzaiConfig",[],{"EXPIRY":86400000,"MAX_SIZE":10000,"MAX_WAIT":150000,"RESTORE_WAIT":150000,"blacklist":["time_spent"],"gks":{"boosted_component":true,"boosted_pagelikes":true,"jslogger":true,"mercury_send_error_logging":true,"platform_oauth_client_events":true,"xtrackable_clientview_batch":true,"visibility_tracking":true,"graphexplorer":true,"gqls_web_logging":true,"sticker_search_ranking":true}},7],["ZeroRewriteRules",[],{"rewrite_rules":{},"whitelist":{"\/hr\/r":1,"\/hr\/p":1,"\/zero\/unsupported_browser\/":1,"\/zero\/policy\/optin":1,"\/zero\/optin\/write\/":1,"\/zero\/optin\/legal\/":1,"\/zero\/optin\/free\/":1,"\/about\/privacy\/":1,"\/about\/privacy\/update\/":1,"\/about\/privacy\/update":1,"\/zero\/toggle\/welcome\/":1,"\/zero\/toggle\/nux\/":1,"\/fup\/interstitial\/":1,"\/work\/landing":1,"\/work\/login\/":1,"\/work\/email\/":1,"\/ai.php":1,"\/js_dialog_resources\/dialog_descriptions_android.json":0,"\/connect\/jsdialog\/MPlatformAppInvitesJSDialog\/":0,"\/connect\/jsdialog\/MPlatformOAuthShimJSDialog\/":0,"\/connect\/jsdialog\/MPlatformLikeJSDialog\/":0,"\/qp\/interstitial\/":1,"\/qp\/action\/redirect\/":1,"\/qp\/action\/close\/":1,"\/zero\/support\/ineligible\/":1,"\/zero_balance_redirect\/":1,"\/zero_balance_redirect":1,"\/zero_balance_redirect\/l\/":1,"\/l.php":1,"\/lsr.php":1,"\/ajax\/dtsg\/":1,"\/checkpoint\/block\/":1,"\/exitdsite":1,"\/zero\/balance\/pixel\/":1,"\/zero\/balance\/":1,"\/zero\/balance\/carrier_landing\/":1,"\/zero\/flex\/logging\/":1,"\/tr":1,"\/tr\/":1,"\/sem_campaigns\/sem_pixel_test\/":1,"\/bookmarks\/flyout\/body\/":1,"\/zero\/subno\/":1,"\/confirmemail.php":1,"\/policies\/":1,"\/mobile\/internetdotorg\/classifier\/":1,"\/zero\/dogfooding":1,"\/xti.php":1,"\/zero\/fblite\/config\/":1,"\/hr\/zsh\/wc\/":1,"\/4oh4.php":1,"\/autologin.php":1,"\/birthday_help.php":1,"\/checkpoint\/":1,"\/contact-importer\/":1,"\/cr.php":1,"\/legal\/terms\/":1,"\/login.php":1,"\/login\/":1,"\/mobile\/account\/":1,"\/n\/":1,"\/remote_test_device\/":1,"\/upsell\/buy\/":1,"\/upsell\/buyconfirm\/":1,"\/upsell\/buyresult\/":1,"\/upsell\/promos\/":1,"\/upsell\/continue\/":1,"\/upsell\/h\/promos\/":1,"\/upsell\/loan\/learnmore\/":1,"\/upsell\/purchase\/":1,"\/upsell\/promos\/upgrade\/":1,"\/upsell\/buy_redirect\/":1,"\/upsell\/loan\/buyconfirm\/":1,"\/upsell\/loan\/buy\/":1,"\/upsell\/sms\/":1,"\/wap\/a\/channel\/reconnect.php":1,"\/wap\/a\/nux\/wizard\/nav.php":1,"\/wap\/appreg.php":1,"\/wap\/birthday_help.php":1,"\/wap\/c.php":1,"\/wap\/confirmemail.php":1,"\/wap\/cr.php":1,"\/wap\/login.php":1,"\/wap\/r.php":1,"\/zero\/datapolicy":1,"\/a\/timezone.php":1,"\/a\/bz":1,"\/bz\/reliability":1,"\/r.php":1,"\/mr\/":1,"\/reg\/":1,"\/registration\/log\/":1,"\/terms\/":1,"\/f123\/":1,"\/expert\/":1,"\/experts\/":1,"\/terms\/index.php":1,"\/terms.php":1,"\/srr\/":1,"\/msite\/redirect\/":1,"\/fbs\/pixel\/":1,"\/contactpoint\/preconfirmation\/":1,"\/contactpoint\/cliff\/":1,"\/contactpoint\/confirm\/submit\/":1,"\/contactpoint\/confirmed\/":1,"\/contactpoint\/login\/":1,"\/preconfirmation\/contactpoint_change\/":1,"\/help\/contact\/":1,"\/survey\/":1,"\/upsell\/loyaltytopup\/accept\/":1,"\/settings\/":1,"\/lite\/":1}},1478]]);new (require("ServerJS"))().handle({"require":[["markJSEnabled"],["lowerDomain"],["URLFragmentPrelude"],["Primer"],["BigPipe"],["Bootloader"],["TimeSlice"],["ArtilleryOnUntilOffLogging","disable",[],[]],["BanzaiODS"],["BanzaiScuba"],["VisualCompletionGating"]]});}, "ServerJS define", {"root":true})();</script></head><body class="_4-u5 _2yq UIPage_LoggedOut _-kb _605a b_c3pyn-ahh x1 Locale_fr_FR" dir="ltr"><script>requireLazy(["bootstrapWebSession"],function(j){j(1578564347)})</script><div class="_li" id="u_0_6"><div class="_3_s0 _1toe _3_s1 _3_s1 uiBoxGray noborder" data-testid="ax-navigation-menubar" id="u_0_7"><div class="_608m"><div class="clearfix _ikh _tb6"><div class="_4bl7"><span class="mrm _3bcv _50f3">Aller vers</span></div><div class="_4bl9 _3bcp"><div class="_6a _608n" aria-label="Assistant de navigation" role="menubar" id="u_0_8"><div class="_6a uiPopover" id="u_0_9"><a role="button" class="_42ft _4jy0 _55pi _2agf _4o_4 _63xb _p _4jy3 _517h _51sy" href="#" style="max-width:200px;" aria-haspopup="true" aria-expanded="false" rel="toggle" id="u_0_a"><span class="_55pe">Sections de cette Page</span><span class="_4o_3 _3-99"><i class="img sp_qtp6H98Uhz5 sx_d51a13"></i></span></a></div><div class="_6a _3bcs"></div><div class="_6a mrm uiPopover" id="u_0_b"><a role="button" class="_42ft _4jy0 _55pi _2agf _4o_4 _3_s2 _63xb _p _4jy3 _4jy1 selected _51sy" href="#" style="max-width:200px;" aria-haspopup="true" tabindex="-1" aria-expanded="false" rel="toggle" id="u_0_c"><span class="_55pe">Aide accessibilité</span><span class="_4o_3 _3-99"><i class="img sp_qtp6H98Uhz5 sx_8066bf"></i></span></a></div></div></div></div></div></div><div id="pagelet_bluebar" data-referrer="pagelet_bluebar"><div id="blueBarDOMInspector"><div class="_53jh"><div class="loggedout_menubar_container"><div class="clearfix loggedout_menubar"><div role="heading" aria-level="2" class="lfloat _ohe"><a href="https://www.facebook.com/" title="Acc&#xe9;der &#xe0; la page d&#x2019;accueil"><i class="fb_logo img sp_qtp6H98Uhz5 sx_d0e21d"><u>Facebook</u></i></a></div><div class="menu_login_container rfloat _ohf" data-testid="royal_login_form"><form id="login_form" action="https://www.facebook.com/login/device-based/regular/login/?login_attempt=1&amp;lwv=110" method="post" novalidate="1" onsubmit=""><input type="hidden" name="jazoest" value="2703" autocomplete="off" /><input type="hidden" name="lsd" value="AVpJ6Pvr" autocomplete="off" /><table cellspacing="0" role="presentation"><tr><td class="html7magic"><label for="email">Adresse e-mail ou mobile</label></td><td class="html7magic"><label for="pass">Mot de passe</label></td></tr><tr><td><input type="email" class="inputtext login_form_input_box" name="email" id="email" data-testid="royal_email" /></td><td><input type="password" class="inputtext login_form_input_box" name="pass" id="pass" data-testid="royal_pass" /></td><td><label class="login_form_login_button uiButton uiButtonConfirm" id="loginbutton" for="u_0_3"><input value="Connexion" aria-label="Se connecter" data-testid="royal_login_button" type="submit" id="u_0_3" /></label></td></tr><tr><td class="login_form_label_field"></td><td class="login_form_label_field"><div><a href="https://www.facebook.com/recover/initiate?lwv=110&amp;ars=royal_blue_bar">Informations de compte oubliées ?</a></div></td></tr></table><input type="hidden" autocomplete="off" name="timezone" value="" id="u_0_4" /><input type="hidden" autocomplete="off" name="lgndim" value="" id="u_0_5" /><input type="hidden" name="lgnrnd" value="020547_cQ-F" /><input type="hidden" id="lgnjs" name="lgnjs" value="n" /><input type="hidden" autocomplete="off" name="ab_test_data" value="" /><input type="hidden" autocomplete="off" id="locale" name="locale" value="fr_FR" /><input type="hidden" autocomplete="off" name="next" value="https://www.facebook.com/cgtnamerica/posts/" /><input type="hidden" autocomplete="off" name="login_source" value="login_bluebar" /><input type="hidden" autocomplete="off" name="guid" value="" /><input type="hidden" autocomplete="off" id="prefill_contact_point" name="prefill_contact_point" /><input type="hidden" autocomplete="off" id="prefill_source" name="prefill_source" /><input type="hidden" autocomplete="off" id="prefill_type" name="prefill_type" /></form></div></div></div></div></div></div><div id="globalContainer" class="uiContextualLayerParent"><div class="fb_content clearfix " id="content"><div><div class="clearfix" itemscope="itemscope" itemtype="http://schema.org/Organization"><div class="_1qkq _1qks"><div class="_r_m _6ye8" role="navigation" aria-labelledby="u_0_0" id="entity_sidebar"><div id="u_0_d"></div><div class="_19sz"><div class="_19s-"><div id="u_0_e"></div></div><div class="_19s_"><div><div id="u_0_f"></div></div></div></div><div class="_2fvv" id="u_0_g"><div class="_2yaa" data-key="tab_home"><a class="_2yau" data-endpoint="/cgtnamerica/?ref=page_internal" href="/cgtnamerica/?ref=page_internal"><span class="_2yav">Accueil</span><span class="img _55ym _55yn _55yo _2wwb" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..."></span></a></div><div class="_2yaa _2yap" data-key="tab_posts"><a class="_2yau" data-endpoint="/cgtnamerica/posts/?ref=page_internal" aria-current="page" href="/cgtnamerica/posts/?ref=page_internal"><span class="_2yav">Publications</span><span class="img _55ym _55yn _55yo _2wwb" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..."></span></a></div><div class="_2yaa" data-key="tab_reviews"><a class="_2yau" data-endpoint="/cgtnamerica/reviews/?ref=page_internal" href="/cgtnamerica/reviews/?ref=page_internal"><span class="_2yav">Avis</span><span class="img _55ym _55yn _55yo _2wwb" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..."></span></a></div><div class="_2yaa" data-key="tab_videos"><a class="_2yau" data-endpoint="/cgtnamerica/videos/?ref=page_internal" href="/cgtnamerica/videos/?ref=page_internal"><span class="_2yav">Vidéos</span><span class="img _55ym _55yn _55yo _2wwb" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..."></span><i class="img sp_fnP-WnuFakL sx_556c5c"><u>En direct</u></i></a></div><div class="_2yaa" data-key="tab_photos"><a class="_2yau" data-endpoint="/cgtnamerica/photos/?ref=page_internal" href="/cgtnamerica/photos/?ref=page_internal"><span class="_2yav">Photos</span><span class="img _55ym _55yn _55yo _2wwb" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..."></span></a></div><div class="_2yaa" data-key="tab_about"><a class="_2yau" data-endpoint="/cgtnamerica/about/?ref=page_internal" href="/cgtnamerica/about/?ref=page_internal"><span class="_2yav">À propos</span><span class="img _55ym _55yn _55yo _2wwb" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..."></span></a></div><div class="_2yaa" data-key="tab_community"><a class="_2yau" data-endpoint="/cgtnamerica/community/?ref=page_internal" href="/cgtnamerica/community/?ref=page_internal"><span class="_2yav">Communauté</span><span class="img _55ym _55yn _55yo _2wwb" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..."></span></a></div><div class="_2yaa" data-key="tab_custom_212104595551052"><a class="_2yau" data-endpoint="/cgtnamerica/app/212104595551052/?ref=page_internal" href="/cgtnamerica/app/212104595551052/?ref=page_internal"><span class="_2yav">YouTube</span><span class="img _55ym _55yn _55yo _2wwb" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..."></span></a></div></div><div></div><div class="_3-8z"><div><noscript id="u_0_h"></noscript></div></div></div></div><div class="_1qkq _1ql0"><div class="_3d9q" id="u_0_i"><div><div class="_5h60" id="pagelet_page_above_header" data-referrer="pagelet_page_above_header" data-referrer="pagelet_page_above_header"><div class="timeline"></div></div><div></div><div id="PagesCoverElementContainerPagelet" data-referrer="PagesCoverElementContainerPagelet" data-referrer="PagesCoverElementContainerPagelet"><div id="u_0_m"></div></div></div><div class="_4-u2 _hoc clearfix _4-u8"><div class="clearfix"><div class="lfloat _ohe" id="u_0_j"></div><div class="rfloat _ohf" id="u_0_k"></div></div></div></div><div id="content_container"><div><div class="_3-8y"><div style="margin-top: -12px"><div class="_5h60" id="pagelet_growth_expanding_cta" data-referrer="pagelet_growth_expanding_cta" data-referrer="pagelet_growth_expanding_cta"><div class="_5hn6" id="u_0_e7"><div class="_3ob9" id="u_0_e8"><div class="_3obd"><div class="_3oba">Voir plus de contenu de CGTN America sur Facebook</div><div class="_4qc7"><div class="_4qb-"><a role="button" class="_42ft _4jy0 _3obb _4jy6 _4jy1 selected _51sy" href="/login/?next=https%3A%2F%2Fwww.facebook.com%2Fcgtnamerica%2F">Connexion</a></div><div class="_3obc">ou</div><a role="button" class="_42ft _4jy0 _3obb _4jy6 _4jy2 selected _51sy" href="/reg/?rs=2">Créer un compte</a></div></div></div><div class="_62uh" id="u_0_e9"><div class="uiScaledImageContainer _62ui"><img class="scaledImageFitWidth img" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t1.0-1/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&amp;_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=e93301fa680a1229f3aa37dd497f7194&amp;oe=5E911BE1" data-src="https://scontent-cdg2-1.xx.fbcdn.net/v/t1.0-1/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&amp;_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=e93301fa680a1229f3aa37dd497f7194&amp;oe=5E911BE1" alt="" width="500" height="500" data-ft="&#123;&quot;tn&quot;:&quot;-^&quot;&#125;" itemprop="image" /></div><div class="_62uj"><div class="_62uk">Voir plus de contenu de CGTN America sur Facebook</div><div class=""><form id="login_form" action="https://www.facebook.com/login/device-based/regular/login/?login_attempt=1&amp;lwv=110" method="post" novalidate="1" onsubmit=""><input type="hidden" name="jazoest" value="2703" autocomplete="off" /><input type="hidden" name="lsd" value="AVpJ6Pvr" autocomplete="off" /><div><div class="_qba"><div class="_qbb"><input type="email" class="inputtext" id="email" name="email" placeholder="Adresse e-mail ou mobile" aria-label="Adresse e-mail ou mobile" /></div><div class="_qbf"></div><div class="_qbc"><input type="password" class="inputtext" id="pass" name="pass" placeholder="Mot de passe" aria-label="Mot de passe" /></div></div><button value="1" class="_42ft _4jy0 _qbo _3jd8 login_form_login_button _4jy5 _4jy1 selected _51sy" id="loginbutton" data-testid="royal_login_button" type="submit">Connexion</button><div class="_qbe"><a href="https://www.facebook.com/recover/initiate?lwv=110&amp;ars=royal_blue_bar">Informations de compte oubliées ?</a></div></div><input type="hidden" autocomplete="off" name="timezone" value="" id="u_0_ea" /><input type="hidden" autocomplete="off" name="lgndim" value="" id="u_0_eb" /><input type="hidden" name="lgnrnd" value="020547_cQ-F" /><input type="hidden" id="lgnjs" name="lgnjs" value="n" /><input type="hidden" autocomplete="off" name="ab_test_data" value="" /><input type="hidden" autocomplete="off" id="locale" name="locale" value="fr_FR" /><input type="hidden" autocomplete="off" name="next" value="https://www.facebook.com/cgtnamerica/" /><input type="hidden" autocomplete="off" name="guid" value="" /><input type="hidden" autocomplete="off" id="prefill_contact_point" name="prefill_contact_point" /><input type="hidden" autocomplete="off" id="prefill_source" name="prefill_source" /><input type="hidden" autocomplete="off" id="prefill_type" name="prefill_type" /></form></div><div class="_62um"><div class="_62un"><span class="_62uo">ou</span></div></div><a role="button" class="_42ft _4jy0 _62ul _4jy6 _4jy2 selected _51sy" href="/reg/?rs=1">Créer un compte</a><div class="_62up"><a class="_3j0u" id="expanding_cta_close_button" data-nocookies="1" href="#" role="button">Plus tard</a></div></div></div></div></div></div></div><div class="clearfix"><div class="_14iw _1qkq _1qku"><div class="_2pie" id="u_0_l"><div id="id_5e16fafb5b2225a89211926" data-referrer="id_5e16fafb5b2225a89211926" data-referrer="id_5e16fafb5b2225a89211926"><div><div id="PageTimelineSearchPagelet_300653326696613" data-referrer="PageTimelineSearchPagelet_300653326696613" data-referrer="PageTimelineSearchPagelet_300653326696613"><div class="_5ay5" data-id="25"><div class="_4-u2 _drp _4-u8"><div><noscript id="u_0_e6"></noscript></div></div></div></div><div id="PagePostsByOthersPagelet_300653326696613" data-referrer="PagePostsByOthersPagelet_300653326696613" data-referrer="PagePostsByOthersPagelet_300653326696613"></div></div></div><div id="pagelet_rhc_footer" data-referrer="pagelet_rhc_footer" data-referrer="pagelet_rhc_footer"><div class="_45mq"><div class="uiContextualLayerParent"><div class="_4-u2 _19ah _2ph_ _4-u8"><div class="_5aj7"><div class="_4bl9"><div class="fsm fwn fcg"><span lang="fr">Français (France)</span><span role="presentation" aria-hidden="true"> · </span><a dir="ltr" href="#" lang="en" onclick="require(&quot;IntlUtils&quot;).setCookieLocale(&quot;en_US&quot;, &quot;fr_FR&quot;, &quot;https:\/\/www.facebook.com\/cgtnamerica\/posts\/&quot;, &quot;www_card_selector&quot;, 0); return false;" title="English (US)" class="_5f4c" role="button">English (US)</a><span role="presentation" aria-hidden="true"> · </span><a dir="ltr" href="#" onclick="require(&quot;IntlUtils&quot;).setCookieLocale(&quot;es_LA&quot;, &quot;fr_FR&quot;, &quot;https:\/\/es-la.facebook.com\/cgtnamerica\/posts\/&quot;, &quot;www_card_selector&quot;, 1); return false;" title="Spanish" class="_5f4c" role="button">Español</a><span role="presentation" aria-hidden="true"> · </span><a dir="ltr" href="#" lang="pt" onclick="require(&quot;IntlUtils&quot;).setCookieLocale(&quot;pt_BR&quot;, &quot;fr_FR&quot;, &quot;https:\/\/pt-br.facebook.com\/cgtnamerica\/posts\/&quot;, &quot;www_card_selector&quot;, 2); return false;" title="Portuguese (Brazil)" class="_5f4c" role="button">Português (Brasil)</a><span role="presentation" aria-hidden="true"> · </span><a dir="ltr" href="#" lang="de" onclick="require(&quot;IntlUtils&quot;).setCookieLocale(&quot;de_DE&quot;, &quot;fr_FR&quot;, &quot;https:\/\/de-de.facebook.com\/cgtnamerica\/posts\/&quot;, &quot;www_card_selector&quot;, 3); return false;" title="German" class="_5f4c" role="button">Deutsch</a></div></div><div class="_4bl7 _2pit"><a role="button" class="_42ft _4jy0 _4jy4 _517h _51sy" ajaxify="/settings/language/language/?uri=https%3A%2F%2Fwww.facebook.com%2Fcgtnamerica%2Fposts%2F&amp;source=www_card_selector_more" rel="dialog" href="#" aria-label="Utiliser Facebook dans une autre langue."><i class="img sp_RLFL6-1bUHS sx_46feaa"></i></a></div></div></div></div><div aria-label="Facebook" class="_26z1" role="contentinfo"><div class="fsm fwn fcg"><span><a href="https://www.facebook.com/legal/terms/information_about_page_insights_data" target="_blank">Informations concernant les données de statistiques de Page</a></span></div><div class="fsm fwn fcg"><a href="https://www.facebook.com/privacy/explanation" title="En savoir plus sur Facebook et le respect de votre vie priv&#xe9;e.">Confidentialité</a><span role="presentation" aria-hidden="true"> · </span><a accesskey="9" href="https://www.facebook.com/policies?ref=pf" title="Prenez connaissance des conditions g&#xe9;n&#xe9;rales et des r&#xe8;glements.">Conditions générales</a><span role="presentation" aria-hidden="true"> · </span><a href="https://www.facebook.com/ad_campaign/landing.php?placement=pf_rhc&amp;campaign_id=242449722530626&amp;extra_1=auto" title="Diffusez votre publicit&#xe9; sur Facebook.">Publicité</a><span role="presentation" aria-hidden="true"> · </span><a class="_41uf" href="https://www.facebook.com/help/568137493302217" title="En savoir plus sur Choisir sa pub.">Choisir sa pub<i class="img sp_RLFL6-1bUHS sx_e7b002"></i></a><span role="presentation" aria-hidden="true"> · </span><a href="https://www.facebook.com/help/cookies?ref_type=sitefooter" title="Cookies">Cookies</a><span role="presentation" aria-hidden="true"> · </span><div class="_6a uiPopover" id="u_0_ed"><a class="_45mr _p" aria-haspopup="true" aria-expanded="false" rel="toggle" href="#" role="button" id="u_0_ee">Plus<i class="img sp_RLFL6-1bUHS sx_45581a"></i></a></div></div><div><span> Facebook © 2020</span></div></div></div></div></div></div><div class="_2pie _14i5 _1qkq _1qkx" role="main"><div id="pagelet_timeline_main_column"><div id="id_5e16fafb5b1fd4361777538" data-referrer="id_5e16fafb5b1fd4361777538" data-referrer="id_5e16fafb5b1fd4361777538"><div class="_442n" id="u_0_e4"></div><div id="u_0_e5"><div class="_1xnd"><div class="_4-u2 _4-u8"><div class="_427x"><div class="_4-u2 mbm _4mrt _5jmm _5pat _5v3q _7cqq _4-u8" data-ft="&#123;&quot;fbfeed_location&quot;:36&#125;" data-fte="1" data-ftr="1" data-xt="AZWg1fXteBhHmgu5hmYKcV20ud6wkWsyPBcUvj6N1q1Y9goYbWbSR8EipaEoIaRR7YW9HRp0cdyyBTj9ZdQEh2whn5JmqqwdPgfJv1i5Y9HOocJT-x2RoKOaCgMlp6LXwjYRGKALxQGaQMRQBPXQnsv1giKCTvOex2X_4Z48tL0Q-RKPRxih2qKJ46hiMD4KcJ1hLUTFy62NYTj2ODMP5DwpUbmPa1I_rIG2XajoYhmGD7kyAjwYXOWyVZ_DWhNQxz316Lx8UVEdBT0pUkE2f-VEH5kEWfg3OQbX7U1pABdUuDcf0QB4O9sSGzWYVZSRJVGqu_nOSsKIR_hqYRFL4x4IBT7Pga8T7fNc8JslFKfi606tZkF1hV8OROqPKRFC6YE98bbrt0glkHPfa2Mmq01_sx9S8W3qyORZHVQyGf40iBinfL6s9wjP9OeSX_m7KH_VZNw2Y6qJrgQDjpOZ3wOfVWSStcfisofAs-2hw6vtPgTuOsFkr_db99Den-Jndam5Vh-T14aDfJCyWtMuF08TOwh9OIwOAWEsmZ6DNe5U_MgyXT_VX4HOlWh-dzVSxGIyukIt1Jx-TKVOpYPhMMT5APYIMZgvEg3cZrQYVqVM36Q5d_UjIz1KulS_ujaQUgKyeGoKA36OnyVXUPDwYoqrwA-N6ao4Eogtv-ltxEZLqdlPJJCHWZ6SDtu86cuZ6pCPj85Ivw_PxqNEEXcOAQsUN-cZ9M_eYZBuhyiTwcbGpFPDFHoRJN-b88nR1bSTXNky-ADtHwAIFCFyj8ZoX7BfSKzR-lYSkFp1Zixz8MlXTqxxtnXAWd1dhtjadltXHi1Xlg4xXn3pwWsafhXHW7M-pJVZfPTN1kWyIEw_XOz2DSuH00PXko-xnz5_m9hePf-22V77xnt0QA8a19zLO1aCfTGOHKZj66nRyCE0GfrS-w" data-xt-vimp="&#123;&quot;pixel_in_percentage&quot;:0,&quot;duration_in_ms&quot;:1,&quot;client_track_subsequent_impression&quot;:true,&quot;client_no_dedup&quot;:false,&quot;subsequent_gap_in_ms&quot;:60000,&quot;log_initial_nonviewable&quot;:false,&quot;should_batch&quot;:true,&quot;require_horizontally_onscreen&quot;:false,&quot;encrypt_data_xt&quot;:true,&quot;signal_mode_for_ss&quot;:false,&quot;vital_mode_for_ss&quot;:false,&quot;should_not_delay_impression&quot;:true,&quot;should_log_endpoint_info&quot;:true,&quot;log_viewability_events_for_infra_validation&quot;:false,&quot;log_visibility_hidden_when_browser_inactive&quot;:true,&quot;count_blue_bar_height&quot;:true,&quot;detect_occlusion&quot;:false,&quot;should_not_log_on_occlusion&quot;:false,&quot;is_rhc&quot;:false&#125;" id="u_0_p"><div class="_3ccb" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;" data-gt="&#123;&quot;type&quot;:&quot;click2canvas&quot;,&quot;fbsource&quot;:703,&quot;ref&quot;:&quot;nf_generic&quot;&#125;" id="u_0_18"><div></div><div class="_5pcr userContentWrapper" style="" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;"><div class="_1dwg _1w_m _q7o" data-vc-ignore-dynamic="1"><div class="_4r_y" id="u_0_1b"><div class="_1wbl" id="u_0_1a"></div></div><div><div class="l_c3pyo2v0u i_c3pynyi2f clearfix"><div class="clearfix y_c3pyo2ta3"><a class="_5pb8 o_c3pynyi2g _8o _8s lfloat _ohe" aria-hidden="true" tabindex="-1" target="" data-ft="&#123;&quot;tn&quot;:&quot;\u003C&quot;&#125;" href="https://www.facebook.com/cgtnamerica/?ref=nf&amp;hc_ref=ARSQ89CPn0Sw7Kg9xQBjuyTSfFZzJ5AAcSOtbI6yvaLsJoiSkndWYHcoywQDPbRuvUE"><div class="_38vo"><noscript id="u_0_20"></noscript><div><img class="_s0 _4ooo _5xib _5sq7 _44ma _rw img" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t1.0-1/p50x50/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&amp;_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=3acb44171b892a809a8d6bba8847175c&amp;oe=5EA6F099" alt="" aria-label="CGTN America" role="img" /></div></div></a><div class="clearfix _42ef"><div class="rfloat _ohf"></div><div class="u_c3pyo2ta4"><div><div class="_6a _5u5j"><div class="_6a _6b" style="height:40px"></div><div class="_6a _5u5j _6b"><h5 class="_7tae _14f3 _14f5 _5pbw _5vra" id="u_0_1c" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fwn fcg"><span class="fwb fcg" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;"><a href="https://www.facebook.com/cgtnamerica/?hc_ref=ARQcUG1UCSM4vzDv0CqEyLCatzVvzKIEYFyQEv8zi_sd4RSdZbSaHYR8FoEZsPyv91A&amp;fref=nf">CGTN America</a></span></span></h5><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_300653326696613;2662135307215058;;9" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a class="_5pcq" href="/cgtnamerica/posts/2662135307215058" target=""><abbr title="08/01/2020 16:47" data-utime="1578530877" data-shorten="1" class="_5ptz timestamp livetimestamp"><span class="timestampContent">9 h</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div></div></div></div></div></div></div><div data-testid="post_message" class="_5pbx userContent _3576" data-ft="&#123;&quot;tn&quot;:&quot;K&quot;&#125;"><p>Iran retaliates, hitting American bases in Iraq in a tit-for-tat attack after the U.S. assassinates a top Iranian general. Tensions remain high in the Middle East between the U.S. and Iran since an American drone strike killed General Suleimani in Baghdad last week.</p></div><div class="_3x-2" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="mtm"><div id="u_0_19" class="_6m2 _1zpr clearfix _dcs _4_w4 _59ap _2bf7 _64lx _3eqz _20pq _3eqw _2rk1 _1-9r _5qqr" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="clearfix _2r3x"><div class="lfloat _ohe"><span class="_3m6-"><div class="_6ks"><a href="https://l.facebook.com/l.php?u=https%3A%2F%2Famerica.cgtn.com%2F2020%2F01%2F08%2Fthe-heat-iran-u-s-tensions&amp;h=AT2lApTeWYd5J5fECw7hCaaoDm3GrGYXOp9TZhz1VPKjG2361Yoa5nCSHrpCQHYz8LHmE88zKikpM0MRX_vxPbIGnCFlkRrKe_Ye678oJ9RKqSYjdEzaIjQ0agWYPoVs3F-Cgsue3KxrPfA8K2MxuI24R53VDySA6BU" aria-describedby="u_0_1z" aria-label="The Heat: Iran-U.S. Tensions" tabindex="-1" target="_blank" rel="nofollow" data-lynx-mode="hover"><div class="accessible_elem inlineBlock" id="u_0_1z">Iran retaliates, hitting American bases in Iraq in a tit-for-tat attack after the U.S. assassinates a top Iranian general. Tensions remain high in the Middle East between the U.S. and Iran since an American drone strike killed General Suleimani in Baghdad last week. For his …</div><div class="_6l- __c_"><div class="uiScaledImageContainer _6m5 fbStoryAttachmentImage" style="width:500px;height:261.11111111111px;"><img class="scaledImageFitWidth img" src="https://external-cdg2-1.xx.fbcdn.net/safe_image.php?d=AQDV_a28DF6k2rEV&amp;w=540&amp;h=282&amp;url=https%3A%2F%2Famerica.cgtn.com%2Fwp-content%2Fuploads%2F2020%2F01%2FIran-strikes-for-DIGITAL.jpg&amp;cfs=1&amp;upscale=1&amp;fallback=news_d_placeholder_publisher&amp;_nc_hash=AQA-86R6uusn-nHv" data-src="https://external-cdg2-1.xx.fbcdn.net/safe_image.php?d=AQDV_a28DF6k2rEV&amp;w=540&amp;h=282&amp;url=https%3A%2F%2Famerica.cgtn.com%2Fwp-content%2Fuploads%2F2020%2F01%2FIran-strikes-for-DIGITAL.jpg&amp;cfs=1&amp;upscale=1&amp;fallback=news_d_placeholder_publisher&amp;_nc_hash=AQA-86R6uusn-nHv" style="top:0px;" alt="" width="500" height="262" aria-label="L&#x2019;image contient peut-&#xea;tre&#xa0;: bandes, ciel, nuage et plein air" /></div></div></a></div><div class="_3ekx _29_4"><div class="_6m3 _--6"><div class="_59tj _2iau"><div><div class="_6lz _6mb _1t62 ellipsis">america.cgtn.com</div><div class=""></div></div></div><div class="_3n1k"><div class="mbs _6m6 _2cnj _5s6c"><a href="https://l.facebook.com/l.php?u=https%3A%2F%2Famerica.cgtn.com%2F2020%2F01%2F08%2Fthe-heat-iran-u-s-tensions&amp;h=AT3r-DH6WvC5q9RgPtfPYahWl5_sBIE6GGFTVYE7TqCnNNUgAVcU3CbRTjiT4F_pdk54-wKPoUCkWigsCMRmSRsuP6ANaMMr-ZpT0Eg9-3PblfwVQkn8mhd4NI-Z-Y3RgEZbNS7wVGp758OeZ9ZA-n5ARFZ313aT1NE" rel="nofollow" target="_blank" data-lynx-mode="hover">The Heat: Iran-U.S. Tensions</a></div><div class="_6m7 _3bt9">Iran retaliates, hitting American bases in Iraq in a tit-for-tat attack after the U.S. assassinates a top Iranian general. Tensions remain high in the Middle East between the U.S. and Iran since an American drone strike killed General Suleimani in Baghdad last week. For his …</div></div></div><a href="https://l.facebook.com/l.php?u=https%3A%2F%2Famerica.cgtn.com%2F2020%2F01%2F08%2Fthe-heat-iran-u-s-tensions&amp;h=AT3Fw9X3hKNIVAPNckifjkPtXTqGn6xhSU9bexmhpPeVIa8oSejfSGDLieks2otyoeD9CWB29FKun56CZmLLG_TsreLn7l2iItN3Zs7ejsBN3VBg0CzSxsog_x0rSoXQ6TWZyK7YVeXbR8Ul41PsKXVS-46HC2GH47GYNqo97pDqrQ" aria-label="The Heat: Iran-U.S. Tensions" aria-describedby="u_0_1d" rel="noopener nofollow" tabindex="-1" target="_blank" class="_52c6" data-lynx-mode="hover"><div class="accessible_elem" id="u_0_1d">Iran retaliates, hitting American bases in Iraq in a tit-for-tat attack after the U.S. assassinates a top Iranian general. Tensions remain high in the Middle East between the U.S. and Iran since an American drone strike killed General Suleimani in Baghdad last week. For his …</div></a></div></span></div><div class="_42ef"><span class="_3c21"></span></div></div></div></div></div></div><div></div></div></div><div><form rel="async" class="commentable_item" method="post" data-ft="&#123;&quot;tn&quot;:&quot;]&quot;&#125;" action="/ajax/ufi/modify.php" onsubmit="" id="u_0_1t"><input type="hidden" name="jazoest" value="2703" autocomplete="off" /><input type="hidden" name="lsd" value="AVpJ6Pvr" autocomplete="off" /><input type="hidden" autocomplete="off" name="ft_ent_identifier" value="2662135307215058" /><input type="hidden" autocomplete="off" name="data_only_response" value="1" /><div class="_7f6e"><div class="_5vsi"></div><noscript id="u_0_1s"></noscript></div></form></div></div></div></div></div></div><div class="_4-u2 _4-u8"><div class="_427x"><div class="_4-u2 mbm _4mrt _5jmm _5pat _5v3q _7cqq _4-u8" data-ft="&#123;&quot;fbfeed_location&quot;:36&#125;" data-fte="1" data-ftr="1" data-xt="AZVVPWMDUTIv3k4iIxSlu0DyOofWiO8ayvPZN6V8ULnNiQGZ8tWusD6Og4j64QiXZuEqwdSdOBc_xOkhC6J0vR7WOGSzWkn5xuQjpSG7WsYLd_X1aAwu2oz1YEY-c2pPnxp_8rckB-oZ-cb9fxz3dEwVzmvxCo8188s8lylYpmUeDafSNnt-w6rp__qkMuA4BIx8WCnaTsvZ4sI0mm6-0yTmz9kBa1EebnckwA-N3Kfp6ySB-9K3WEyteIb_47qza2rxulv6chAWg5bkqKn-eR16wEIFT1tHLv1lqmTbqJtyQ_aAYmlVXYgYkFXJPmDdWMB5pwMnpkzeS3AbfNFJpGWi_loruELIS63VOA6RX9zZGwcu5D0Qf6LVwCf_-jt9C6RsIhbZXv3uiaX-B4vV1hQmsLUAwJ0ooaDUQOPwW27ETLFTdwkS94nLYKI0O-eLOO38S8ndXyUcAZJtxvSPD62CfbiLHKthnGnFMPdMBxc0QkFBOor-RoXHZHZ_zHuLRrMF6YTeAANMBdDwRZ5RRndjZXxU7IgJSd2val6fuA2bhzQn_ykZw_a7v-LaSAPWi7oNuCT24Vlk2qlIBZE1_5v2kWi0MVcVTxOwjCwxB8kEE5bbllRW2OksrcYd-0rtOB0OULdhpg5f0l1cAxMhIAiKjM38ay1jLB83cQyZojCmn2ep5muXf26zH06d3C1Cya_wB0fnN1BXa4K_P1Pp0VvuBiWGXf-5owHYPxLcpg9ovUnXfIOxGENWYn_9K9gUUXiHYFrg0SaynpamAg-5FF2wEi_jr-dHnJNouVg2qHqPwL-zDeBxN3bJUdfrhzvEltpdj7bSYHCVVXBJxqohmhLfP9U2oaadGccps_WXPanBPUr7Oizf_j2v4xm8m3a6AoSr5xTWhnBMptCDRbbdQzEHKenYpizt3m_odDFdsZT_t5BP511QdZMUJKsJnmX7YI8" data-xt-vimp="&#123;&quot;pixel_in_percentage&quot;:0,&quot;duration_in_ms&quot;:1,&quot;client_track_subsequent_impression&quot;:true,&quot;client_no_dedup&quot;:false,&quot;subsequent_gap_in_ms&quot;:60000,&quot;log_initial_nonviewable&quot;:false,&quot;should_batch&quot;:true,&quot;require_horizontally_onscreen&quot;:false,&quot;encrypt_data_xt&quot;:true,&quot;signal_mode_for_ss&quot;:false,&quot;vital_mode_for_ss&quot;:false,&quot;should_not_delay_impression&quot;:true,&quot;should_log_endpoint_info&quot;:true,&quot;log_viewability_events_for_infra_validation&quot;:false,&quot;log_visibility_hidden_when_browser_inactive&quot;:true,&quot;count_blue_bar_height&quot;:true,&quot;detect_occlusion&quot;:false,&quot;should_not_log_on_occlusion&quot;:false,&quot;is_rhc&quot;:false&#125;" id="u_0_q"><div class="_3ccb" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;" data-gt="&#123;&quot;type&quot;:&quot;click2canvas&quot;,&quot;fbsource&quot;:703,&quot;ref&quot;:&quot;nf_generic&quot;&#125;" id="u_0_2s"><div></div><div class="_5pcr userContentWrapper" style="" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;"><div class="_1dwg _1w_m _q7o" data-vc-ignore-dynamic="1"><div class="_4r_y" id="u_0_2v"><div class="_1wbl" id="u_0_2u"></div></div><div><div class="l_c3pyo2v0u i_c3pynyi2f clearfix"><div class="clearfix y_c3pyo2ta3"><a class="_5pb8 o_c3pynyi2g _8o _8s lfloat _ohe" aria-hidden="true" tabindex="-1" target="" data-ft="&#123;&quot;tn&quot;:&quot;\u003C&quot;&#125;" href="https://www.facebook.com/cgtnamerica/?ref=nf&amp;hc_ref=ARQiWjAysmKpuFIc9cTXgrcLdcw6mj-oRLnHpnHpk_bjrw1GtwgRA4ij4h8dUVXkDbo"><div class="_38vo"><noscript id="u_0_e3"></noscript><div><img class="_s0 _4ooo _5xib _5sq7 _44ma _rw img" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t1.0-1/p50x50/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&amp;_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=3acb44171b892a809a8d6bba8847175c&amp;oe=5EA6F099" alt="" aria-label="CGTN America" role="img" /></div></div></a><div class="clearfix _42ef"><div class="rfloat _ohf"></div><div class="u_c3pyo2ta4"><div><div class="_6a _5u5j"><div class="_6a _6b" style="height:40px"></div><div class="_6a _5u5j _6b"><h5 class="_7tae _14f3 _14f5 _5pbw _5vra" id="u_0_9w" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fwn fcg"><span class="fcg"><span class="fwb"><a class="profileLink" href="https://www.facebook.com/cgtnamerica/?hc_ref=ARRM3ffuy9N_1D2egPz_UMBfcW_NchbFhpDWl6gjDYYTJ85Aq7pdkc34iLQ1PPrxJYc&amp;ref=nf_target" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;">CGTN America</a></span> est en direct.</span></span></h5><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_300653326696613;781338735704182;;9" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a href="/cgtnamerica/videos/781338735704182/" aria-label="Vid&#xe9;o, Dur&#xe9;e&#xa0;: 336 heures" ajaxify="/cgtnamerica/videos/vb.300653326696613/781338735704182/?type=3&amp;source=12" rel="theater" class="_5pcq" target=""><abbr title="08/01/2020 15:16" data-utime="1578525383" data-shorten="1" class="_5ptz timestamp livetimestamp"><span class="timestampContent">10 h</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div></div></div></div></div></div></div><div data-testid="post_message" class="_5pbx userContent _3576" data-ft="&#123;&quot;tn&quot;:&quot;K&quot;&#125;"><p>Watch CGTN Live</p></div><div class="_3x-2" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="mtm"><div id="u_0_2t" class="_6m2 _1zpr clearfix _dcs _4_w4 _6m8 _59ap _64lx _3eqz _20pq _3eqw _2rk1 _1-9r _5qqr" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="clearfix _2r3x"><div class="lfloat _ohe"><span class="_3m6-"><div class="_150c" data-ft="&#123;&quot;tn&quot;:&quot;F&quot;&#125;"><img class="_3chq" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/s640x640/74673470_781842235653832_3654111459077521408_n.jpg?_nc_cat=102&amp;_nc_ohc=vz9HKf3Ry8YAQnqZUPrxGtqxMkPTFle4VcMUQZFVVmPuLcOMsroWrZjXA&amp;_nc_ht=scontent-cdg2-1.xx&amp;_nc_tp=1&amp;oh=df30892b40323a75b8c2e819afac8a61&amp;oe=5EA46C3B" /><div class="_5mly _45oh" id="u_0_7z"><div class="_5v-_" id="u_0_80"><div class="_1c_u _45oh" id="u_0_81"><div class="_53j5" style="height:282px;width:500px;" tabindex="0" id="u_0_82"><video height="282" width="500" preload="metadata" style="" class="_ox1 _21y0" data-video-width="500" data-video-height="282" data-original-aspect-ratio="1.7777777777778" id="u_0_83"></video><div class="_4lpe _3htz"><img class="_4lpf" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/s640x640/74673470_781842235653832_3654111459077521408_n.jpg?_nc_cat=102&amp;_nc_ohc=vz9HKf3Ry8YAQnqZUPrxGtqxMkPTFle4VcMUQZFVVmPuLcOMsroWrZjXA&amp;_nc_ht=scontent-cdg2-1.xx&amp;_nc_tp=1&amp;oh=df30892b40323a75b8c2e819afac8a61&amp;oe=5EA46C3B" /></div><div class="_m54 _1jto _3htz" id="u_0_84"><img class="_1445 _2sy9 img" src="https://static.xx.fbcdn.net/rsrc.php/v3/y4/r/-PAXP-deijE.gif" alt="" style="background-image: url(&#039;https\3a //scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/s526x296/74673470_781842235653832_3654111459077521408_n.jpg?_nc_cat\3d 102\26 _nc_ohc\3d vz9HKf3Ry8YAQnqZUPrxGtqxMkPTFle4VcMUQZFVVmPuLcOMsroWrZjXA\26 _nc_ht\3d scontent-cdg2-1.xx\26 _nc_tp\3d 1\26 oh\3d 604dc68c84796e6f0ac22ae1a877a6c2\26 oe\3d 5E906C1D&#039;);" id="u_0_85" /></div><div class="_4ubd _170l _27db _3htz" id="u_0_86"></div><div class="_1uwa hidden_elem _3htz" id="u_0_87"><div class="_4qn1"></div><div class="_1uwb"><div class="_39rw"><div class="_39ry _4qn2"><div class="_39rz">Vidéo en direct interrompue</div><div class="_4qn3">L’émission a été interrompue. Elle devrait reprendre incessamment.</div></div></div></div></div><div class="_1uwa hidden_elem _3htz" id="u_0_88"><div class="_5sjs"></div><div class="_1uwb"><div class="_39rw"><div class="_2glv" id="u_0_89"><div class="hidden_elem" id="u_0_8a"><div class="_39rz">Vidéo en direct indisponible.</div>Elle contient sans doute du contenu soumis à restrictions dans le pays où vous vous trouvez.</div><div id="u_0_8b"><div class="_39rz">Cette vidéo en direct est terminée.</div><div><div></div></div></div><div class="_4do3" id="u_0_8c"></div></div></div></div></div><div class="_npo hidden_elem _3htz" id="u_0_8d"><div class="_3drf"></div><div class="_3x62"><div class="_63rn"><div class="_63rm"><div class="_iij">Vous semblez rencontrer des problèmes pour lire cette vidéo. Si c’est le cas, essayez de redémarrer votre navigateur</div><div class="_iir">Fermer</div></div></div></div></div><div class="_567v _3bw _4ubd _28dy _3htz" id="u_0_8e"><div class="_567_"><div class="_2za- _2vd- uiContextualLayerParent _28dz" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;" id="u_0_8f"><div class="_1vx9">Publié par <a class="_2za_ _5p5v" href="/watch/cgtnamerica/"><span class="_50f7">CGTN America</span></a></div></div></div><div class="_5bke" id="u_0_8g"></div></div><i class="_1jto _bsl _4ubd _3htz" id="u_0_7x"><input aria-label="Lire la vid&#xe9;o" type="button" class="accessible_elem" id="u_0_8h" /></i><span class="img _55ym _55yq _55yo _167h _4ubd _1hiu hidden_elem _360f _167h _3htz" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..." id="u_0_7y"></span><div class="_3ah- _3htz" id="fbVideoStreamingReactionsTray"></div><div class="_2od7 _4ubd _2659 _530p _3rno _3htz" id="u_0_8i"><div id="u_0_8j"><noscript id="u_0_8k"></noscript></div></div><div class="_3htz _4ubd _1zmi" id="u_0_8l"></div></div><div class="_2i84"><div id="u_0_8m"></div></div></div></div></div></div><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;" class="_3ekx _29_4"></div></span></div><div class="_42ef"><span class="_3c21"></span></div></div></div></div></div></div><div></div></div></div><div><form rel="async" class="commentable_item" method="post" data-ft="&#123;&quot;tn&quot;:&quot;]&quot;&#125;" action="/ajax/ufi/modify.php" onsubmit="" id="u_0_e2"><input type="hidden" name="jazoest" value="2703" autocomplete="off" /><input type="hidden" name="lsd" value="AVpJ6Pvr" autocomplete="off" /><input type="hidden" autocomplete="off" name="ft_ent_identifier" value="781338735704182" /><input type="hidden" autocomplete="off" name="data_only_response" value="1" /><div class="_sa_ _gsd _fgm _5vsi _192z"><div class="_37uu"></div></div><div class="uiUfi UFIContainer _3-a6 _4eno _1blz _69ad _65_9 _5pc9 _5vsj _5v9k" id="u_0_e1"></div></form></div></div></div></div></div></div><div class="_4-u2 _4-u8"><div class="_427x"><div class="_4-u2 mbm _4mrt _5jmm _5pat _5v3q _7cqq _4-u8" data-ft="&#123;&quot;fbfeed_location&quot;:36&#125;" data-fte="1" data-ftr="1" data-xt="AZXhApTp4VcaIBY-p82pbkkP-1I9SDsbdV4n0iVArc0Zma4wsIM5K3jgS7QzgSozkV1b4Dp73nt_klNxatq4DAnyXOSDxAKC81nRdEainptU2zF-6M_Y4JDIRy22R2troY-Qus-9K3-iKIxtAEJYqcTaJrwkzrCvOnnfD42pSEMWSIdPPtBRUbcdIxyj_9pKb9MnG5bUH0k3D6vAheAzplbYGuUAAx4hIHDKSnIwJ4N9OYjJCaDpp4GTWcV5mj3_Zg76yGWyX76esPcxmDdaSoqkcDWBYhYv5neEXwOs8Z6wmuJe2B1X57HjCNJeOSQkQI8tGjeOjA0sTNXazpgTbkBBnLhYRhgWWJ5x5q8jPwotJQRfZQyleRaW9IeDssLRlDoonYwPd4HozAGO3hu2rWxE_KTBQSJPClUf4of9pU03RbZwvEgc_K2jaKy_Ew-X2XpT4Q0mofRVqN7RzYsk1MM6dzTJ1w6TAMqdk_aDjJn1I-8YW-uCfxzaCtFL3YqVTrG3zXARcTMlMd39Z9X4BFXvhcG8b7IEsAfR-EpHqs_oCf0sOS-OyVPzEkM97Ut89f6ToK5a9eQN_vT-dkjSliNHRxxuj8TlwDXQm6qA-IHOuF75lKRzeS4EhPYrm39AXv58_xS98RWGsyZF9V6IMHGUUqfP-6ojUmN7ilxqk2GjB60IZ_D5xID5GvLH3YJgJOO47nzY_i-IN0slpjcXMXnIQeRjW6DIobzHkCXR2U4pFUj-LP3wQ33PZOjdkO2Adv73tkaoikCY1E-VRPvbZj36juE5fPehgjEzfJ19wcxLlxQ41V74y-9qvdRvJsKMw0J-9Y9ZDhKvFEdgSuAiuappQ2E7Do8VcnkRovAvd4ddyfVRwrxySMUB0FLdgu0o6_o4qkRi93mV2lRybTEKzZOJ8DKix9h-yDCa4MmPcRKo-_tGBVg65lD5AMLATYqe5eJDZDzoJfC-JvhKdFeOxTgY" data-xt-vimp="&#123;&quot;pixel_in_percentage&quot;:0,&quot;duration_in_ms&quot;:1,&quot;client_track_subsequent_impression&quot;:true,&quot;client_no_dedup&quot;:false,&quot;subsequent_gap_in_ms&quot;:60000,&quot;log_initial_nonviewable&quot;:false,&quot;should_batch&quot;:true,&quot;require_horizontally_onscreen&quot;:false,&quot;encrypt_data_xt&quot;:true,&quot;signal_mode_for_ss&quot;:false,&quot;vital_mode_for_ss&quot;:false,&quot;should_not_delay_impression&quot;:true,&quot;should_log_endpoint_info&quot;:true,&quot;log_viewability_events_for_infra_validation&quot;:false,&quot;log_visibility_hidden_when_browser_inactive&quot;:true,&quot;count_blue_bar_height&quot;:true,&quot;detect_occlusion&quot;:false,&quot;should_not_log_on_occlusion&quot;:false,&quot;is_rhc&quot;:false&#125;" id="u_0_r"><div class="_3ccb" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;" data-gt="&#123;&quot;type&quot;:&quot;click2canvas&quot;,&quot;fbsource&quot;:703,&quot;ref&quot;:&quot;nf_generic&quot;&#125;" id="u_0_9e"><div></div><div class="_5pcr userContentWrapper" style="" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;"><div class="_1dwg _1w_m _q7o" data-vc-ignore-dynamic="1"><div class="_4r_y" id="u_0_ab"><div class="_1wbl" id="u_0_aa"></div></div><div><div class="l_c3pyo2v0u i_c3pynyi2f clearfix"><div class="clearfix y_c3pyo2ta3"><a class="_5pb8 o_c3pynyi2g _8o _8s lfloat _ohe" aria-hidden="true" tabindex="-1" target="" data-ft="&#123;&quot;tn&quot;:&quot;\u003C&quot;&#125;" href="https://www.facebook.com/cgtnamerica/?ref=nf&amp;hc_ref=ARS0bu9eueoMKCnsBZ_l4feQwD_3s-Vz23bPKyQL4yPxNDldWlZO_lGRrvJNSVnclW4"><div class="_38vo"><noscript id="u_0_dh"></noscript><div><img class="_s0 _4ooo _5xib _5sq7 _44ma _rw img" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t1.0-1/p50x50/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&amp;_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=3acb44171b892a809a8d6bba8847175c&amp;oe=5EA6F099" alt="" aria-label="CGTN America" role="img" /></div></div></a><div class="clearfix _42ef"><div class="rfloat _ohf"></div><div class="u_c3pyo2ta4"><div><div class="_6a _5u5j"><div class="_6a _6b" style="height:40px"></div><div class="_6a _5u5j _6b"><h5 class="_7tae _14f3 _14f5 _5pbw _5vra" id="u_0_a6" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fwn fcg"><span class="fwb fcg" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;"><a href="https://www.facebook.com/cgtnamerica/?hc_ref=ARSK8OtjRRaW8l-bg7uFs3cOwGHYOoN_CTxnLIR-CqYw2QxUlHk2IYnJYxiw6Sp0fOw&amp;fref=nf">CGTN America</a></span></span></h5><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_300653326696613;2661965210565401;;9" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a href="/cgtnamerica/videos/724280891432620/" aria-label="Vid&#xe9;o, 93-year-old shoots worker over apartment dispute, Dur&#xe9;e&#xa0;: 34 secondes" ajaxify="/cgtnamerica/videos/vb.300653326696613/724280891432620/?type=3&amp;source=12" rel="theater" class="_5pcq" target=""><abbr title="08/01/2020 14:47" data-utime="1578523631" data-shorten="1" class="_5ptz timestamp livetimestamp"><span class="timestampContent">11 h</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><div data-hover="tooltip" data-tooltip-content="Ajout&#xe9;e le Mercredi 8 janvier 2020, 14:46" class="inlineBlock"><i class="_5qla img sp_NnQJe0BAlA8 sx_a4e8dc"></i></div><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div></div></div></div></div></div></div><div data-testid="post_message" class="_5pbx userContent _3576" data-ft="&#123;&quot;tn&quot;:&quot;K&quot;&#125;"><p>The man was angry over water damage in his apartment. He faces attempted murder charges.<br /> <a href="https://l.facebook.com/l.php?u=https%3A%2F%2Fnewsus.cgtn.com%2Fnews%2F2020-01-09%2F93-year-old-man-allegedly-shoots-an-apartment-worker-in-Las-Vegas-N6p1yunz7q%2Findex.html&amp;h=AT3UDpRbMzaP06FqpQNnAdwTxu6SVQiz_W6Y-5vYFk48RIhiXd3F_-XDkgQlkCEgAO59VanSi9HIQ0as7bDSg2qqO1VX1Q-bASARghDtrB3zVyAjw9pNVcpMiklG834l4EVcizV-rrIcRnMVZZ4HlBOZhZvxOnkDxXDKT4cRpUbQww" target="_blank" data-ft="&#123;&quot;tn&quot;:&quot;-U&quot;&#125;" rel="nofollow" data-lynx-mode="hover">https://newsus.cgtn.com/…/93-year-old-man-allege…/index.html</a></p></div><div class="_3x-2" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="mtm"><div id="u_0_a9" class="_6m2 _1zpr clearfix _dcs _4_w4 _6m8 _59ap _64lx _3eqz _20pq _3eqw _2rk1 _1-9r _5qqr" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="clearfix _2r3x"><div class="lfloat _ohe"><span class="_3m6-"><div class="_150c" data-ft="&#123;&quot;tn&quot;:&quot;F&quot;&#125;"><img class="_3chq" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/72441694_2705986349490886_8505602393746964480_n.jpg?_nc_cat=102&amp;_nc_ohc=ltZPJYpr1vYAQn3tLqJxxL1MK7q8BKk_KL5m2_RKVUzBf4A8qFpzsGUEw&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=b4389452d298f778fc21297802f3cb13&amp;oe=5E9B0959" /><div class="_5mly _45oh" id="u_0_cf"><div class="_5v-_" id="u_0_cg"><div class="_1c_u _45oh" id="u_0_ch"><div class="_53j5" style="height:282px;width:500px;" tabindex="0" id="u_0_ci"><video height="282" width="500" preload="metadata" style="" class="_ox1 _21y0" data-video-width="500" data-video-height="282" data-original-aspect-ratio="1.7777777777778" id="u_0_cj"></video><div class="_4lpe _3htz"><img class="_4lpf" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/72441694_2705986349490886_8505602393746964480_n.jpg?_nc_cat=102&amp;_nc_ohc=ltZPJYpr1vYAQn3tLqJxxL1MK7q8BKk_KL5m2_RKVUzBf4A8qFpzsGUEw&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=b4389452d298f778fc21297802f3cb13&amp;oe=5E9B0959" /></div><div class="_m54 _1jto _3htz" id="u_0_ck"><img class="_1445 _2sy9 img" src="https://static.xx.fbcdn.net/rsrc.php/v3/y4/r/-PAXP-deijE.gif" alt="" style="background-image: url(&#039;https\3a //scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/s526x296/72441694_2705986349490886_8505602393746964480_n.jpg?_nc_cat\3d 102\26 _nc_ohc\3d ltZPJYpr1vYAQn3tLqJxxL1MK7q8BKk_KL5m2_RKVUzBf4A8qFpzsGUEw\26 _nc_ht\3d scontent-cdg2-1.xx\26 _nc_tp\3d 1\26 oh\3d e6c4d88abe6faabb0418c781350c728f\26 oe\3d 5EAD557A&#039;);" id="u_0_cl" /></div><div class="_4ubd _170l _27db _3htz" id="u_0_cm"></div><div class="_npo hidden_elem _3htz" id="u_0_cn"><div class="_3drf"></div><div class="_3x62"><div class="_63rn"><div class="_63rm"><div class="_iij">Vous semblez rencontrer des problèmes pour lire cette vidéo. Si c’est le cas, essayez de redémarrer votre navigateur</div><div class="_iir">Fermer</div></div></div></div></div><div class="_567v _3bw _4ubd _28dy _3htz" id="u_0_co"><div class="_567_"><div class="_2za- _2vd- uiContextualLayerParent _28dz" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;" id="u_0_cp"><div class="_1vx9"><a class="_2za_" href="/watch/?ref=external&amp;v=724280891432620"><span class="_50f7">93-year-old shoots worker over apartment dispute</span></a></div><div class="_1vx9">Publié par <a class="_2za_ _5p5v" href="/watch/cgtnamerica/"><span class="_50f7">CGTN America</span></a></div><div class="_1vx9"><span>3 024 vues</span></div></div></div><div class="_5bke" id="u_0_cq"></div></div><i class="_1jto _bsl _4ubd _3htz" id="u_0_bx"><input aria-label="Lire la vid&#xe9;o" type="button" class="accessible_elem" id="u_0_cr" /></i><span class="img _55ym _55yq _55yo _167h _4ubd _1hiu hidden_elem _360f _167h _3htz" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..." id="u_0_by"></span><div class="_3htz _4ubd _1zmi" id="u_0_cs"></div><div class="_4ivm" id="u_0_ct"></div></div><div class="_2i84"><div id="u_0_cu"></div></div></div></div></div></div><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;" class="_3ekx _29_4"></div></span></div><div class="_42ef"><span class="_3c21"></span></div></div></div></div></div></div><div></div></div></div><div><form rel="async" class="commentable_item" method="post" data-ft="&#123;&quot;tn&quot;:&quot;]&quot;&#125;" action="/ajax/ufi/modify.php" onsubmit="" id="u_0_dg"><input type="hidden" name="jazoest" value="2703" autocomplete="off" /><input type="hidden" name="lsd" value="AVpJ6Pvr" autocomplete="off" /><input type="hidden" autocomplete="off" name="ft_ent_identifier" value="724280891432620" /><input type="hidden" autocomplete="off" name="data_only_response" value="1" /><div class="_7f6e"><div class="_5vsi"></div><noscript id="u_0_df"></noscript></div></form></div></div></div></div></div></div><div class="_4-u2 _4-u8"><div class="_427x"><div class="_4-u2 mbm _4mrt _5jmm _5pat _5v3q _7cqq _4-u8" data-ft="&#123;&quot;fbfeed_location&quot;:36&#125;" data-fte="1" data-ftr="1" data-xt="AZW4SgDG3r7C10Ie5QzMXyOdo8N13tv4lA23uHeKAU94mOIjnz4xwPEbO5sCtzEO9M1moGgOUcmZ-Lj6jF1IK0ODq7oblAiSGZ7qIhKrLGwbd3eBnUkaWe-2yZCIC9aExuZI3-m02yFhkoMzgyzCXsI_lYbaTx3PLz10XefF3uX2MJnmouOBVkqZS-NxEbl_LIZLut5vsbY3SG1kX6Co-4Tyuhjr7WKcywDsomGU2vmwpT9vqZdi2s65W3u6cJPxtcYpBi5OhU-Py8pzswWb_EIkP8f4STNOU3DzhxGzB3EGioRSKyw7caOqhVPT3ChKPs-hWegQnDZujQWsgU10wfsJQMhzBst8PKfCi1BXJ80haawCLwksZOo6-MVR0UglPvjto1oCF28KZZtv5Ab_UL2nyeY_wxMNwPXv8oUWZ-u6bQABGBes-UoiHhL1t3Z4VkcMmvp3_UHB6CBAiIsIpBMNk30s-iDVO8lDTEIh6JSHYzBXdUaqDkR34cFNkvvh_baqFhJ5-t4LRUIUpMBBteFtqkw8nUJSVXTcZBClpQpdoflN3RZbh_aSWTj0iapzN3Fc1nYg4WxIggwDcUsXqCA_ik9oyzJvmpFgVrlKLp4ZgK6UTWC4M3_4alqaqoxwTH7ZkdbY1JQi0YXPcKfNOFPjp-f75gJ-qBbEqClTVfFPCGVEHpsx2bdav8GcOBJrxU5vEUvcn0qTud_Du7mj0QtnhDYcQI7nrDT-GaVtniz_3zyZkhwO9yGeNRMtqzuLsMCdJa0uvNYApFdiq4j0-u2HlxZlFPYV0gVd3SxcySmsWtk_iP5HkVoQVL7Rk-tA8g-U00YoAP5FitG8oWQAQobsc4vSyXU1xza0u-L6OkAHz_RyZl_I3ESuNPA7dJ4GoneISB2JeJ2A21MK0YPRpWQL1OnQd95d8cmvo72zH3lf0Bz7uzN1Tl4h3sGKj-c2ighDn6gW5064SDs8782HaVaf" data-xt-vimp="&#123;&quot;pixel_in_percentage&quot;:0,&quot;duration_in_ms&quot;:1,&quot;client_track_subsequent_impression&quot;:true,&quot;client_no_dedup&quot;:false,&quot;subsequent_gap_in_ms&quot;:60000,&quot;log_initial_nonviewable&quot;:false,&quot;should_batch&quot;:true,&quot;require_horizontally_onscreen&quot;:false,&quot;encrypt_data_xt&quot;:true,&quot;signal_mode_for_ss&quot;:false,&quot;vital_mode_for_ss&quot;:false,&quot;should_not_delay_impression&quot;:true,&quot;should_log_endpoint_info&quot;:true,&quot;log_viewability_events_for_infra_validation&quot;:false,&quot;log_visibility_hidden_when_browser_inactive&quot;:true,&quot;count_blue_bar_height&quot;:true,&quot;detect_occlusion&quot;:false,&quot;should_not_log_on_occlusion&quot;:false,&quot;is_rhc&quot;:false&#125;" id="u_0_s"><div class="_3ccb" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;" data-gt="&#123;&quot;type&quot;:&quot;click2canvas&quot;,&quot;fbsource&quot;:703,&quot;ref&quot;:&quot;nf_generic&quot;&#125;" id="u_0_2n"><div></div><div class="_5pcr userContentWrapper" style="" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;"><div class="_1dwg _1w_m _q7o" data-vc-ignore-dynamic="1"><div class="_4r_y" id="u_0_3r"><div class="_1wbl" id="u_0_3q"></div></div><div><div class="l_c3pyo2v0u i_c3pynyi2f clearfix"><div class="clearfix y_c3pyo2ta3"><a class="_5pb8 o_c3pynyi2g _8o _8s lfloat _ohe" aria-hidden="true" tabindex="-1" target="" data-ft="&#123;&quot;tn&quot;:&quot;\u003C&quot;&#125;" href="https://www.facebook.com/cgtnamerica/?ref=nf&amp;hc_ref=ARSaLpayWt0BbwKoJw1oBvvoqLkozBURwXJo5FqcQhwV1Pa3IK4HMN0BAzyDsNRFzC4"><div class="_38vo"><noscript id="u_0_e0"></noscript><div><img class="_s0 _4ooo _5xib _5sq7 _44ma _rw img" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t1.0-1/p50x50/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&amp;_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=3acb44171b892a809a8d6bba8847175c&amp;oe=5EA6F099" alt="" aria-label="CGTN America" role="img" /></div></div></a><div class="clearfix _42ef"><div class="rfloat _ohf"></div><div class="u_c3pyo2ta4"><div><div class="_6a _5u5j"><div class="_6a _6b" style="height:40px"></div><div class="_6a _5u5j _6b"><h5 class="_7tae _14f3 _14f5 _5pbw _5vra" id="u_0_3o" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fwn fcg"><span class="fwb fcg" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;"><a href="https://www.facebook.com/cgtnamerica/?hc_ref=ARTuyJNAnFeWCEwPjNxXu2xOImScg9aDJFx_gcQnv1C1Kk_UEN2FoZmxPYfhKzwsvgc&amp;fref=nf">CGTN America</a></span></span></h5><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_300653326696613;2661948820567040;;9" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a href="/cgtnamerica/videos/2908242472529513/" aria-label="Vid&#xe9;o, Trump responds to base attacks in Iraq, Dur&#xe9;e&#xa0;: 21 secondes" ajaxify="/cgtnamerica/videos/vb.300653326696613/2908242472529513/?type=3&amp;source=12" rel="theater" class="_5pcq" target=""><abbr title="08/01/2020 14:35" data-utime="1578522908" data-shorten="1" class="_5ptz timestamp livetimestamp"><span class="timestampContent">11 h</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><div data-hover="tooltip" data-tooltip-content="Ajout&#xe9;e le Mercredi 8 janvier 2020, 14:34" class="inlineBlock"><i class="_5qla img sp_NnQJe0BAlA8 sx_a4e8dc"></i></div><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div></div></div></div></div></div></div><div data-testid="post_message" class="_5pbx userContent _3576" data-ft="&#123;&quot;tn&quot;:&quot;K&quot;&#125;"><p>President Trump wants the Iran nuclear deal to end.<br /> White House correspondent Nathan King reflects.<br /> <a href="https://l.facebook.com/l.php?u=https%3A%2F%2Fnewsus.cgtn.com%2F&amp;h=AT196RTO8aY9DL_nD9pF1JffIs9VuD0kCaeaRzHYUYAWy3yx8bxg26drdw6yt20dsHNBFSRTfImLePCLskbsTaP6u4c0DZt7noE0Cb1eMJZeyiaNObDM3SuyQh_pxuNsb7lLTEe-v0z_zirKfa2Mfz_t49UNJ90eEnxOmnCOy8l27g" target="_blank" data-ft="&#123;&quot;tn&quot;:&quot;-U&quot;&#125;" rel="nofollow" data-lynx-mode="hover">https://newsus.cgtn.com/</a>…/White-House-correspond…/index.html</p></div><div class="_3x-2" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="mtm"><div id="u_0_3p" class="_6m2 _1zpr clearfix _dcs _4_w4 _6m8 _59ap _64lx _3eqz _20pq _3eqw _2rk1 _1-9r _5qqr" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="clearfix _2r3x"><div class="lfloat _ohe"><span class="_3m6-"><div class="_150c" data-ft="&#123;&quot;tn&quot;:&quot;F&quot;&#125;"><img class="_3chq" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/74611083_685572978643861_1568280052271939584_n.jpg?_nc_cat=110&amp;_nc_ohc=VEBGrFNjn3YAQnEw3SkOgWMZC8BlG7ER81NS3BKYrdUVdMihzWJuFHt9g&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=e5c7963b60e8d30575c9f5a4e07f6b00&amp;oe=5EA429F4" /><div class="_5mly _45oh" id="u_0_dk"><div class="_5v-_" id="u_0_dl"><div class="_1c_u _45oh" id="u_0_dm"><div class="_53j5" style="height:282px;width:500px;" tabindex="0" id="u_0_dn"><video height="282" width="500" preload="metadata" style="" class="_ox1 _21y0" data-video-width="500" data-video-height="282" data-original-aspect-ratio="1.7777777777778" id="u_0_do"></video><div class="_4lpe _3htz"><img class="_4lpf" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/74611083_685572978643861_1568280052271939584_n.jpg?_nc_cat=110&amp;_nc_ohc=VEBGrFNjn3YAQnEw3SkOgWMZC8BlG7ER81NS3BKYrdUVdMihzWJuFHt9g&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=e5c7963b60e8d30575c9f5a4e07f6b00&amp;oe=5EA429F4" /></div><div class="_m54 _1jto _3htz" id="u_0_dp"><img class="_1445 _2sy9 img" src="https://static.xx.fbcdn.net/rsrc.php/v3/y4/r/-PAXP-deijE.gif" alt="" style="background-image: url(&#039;https\3a //scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/s526x296/74611083_685572978643861_1568280052271939584_n.jpg?_nc_cat\3d 110\26 _nc_ohc\3d VEBGrFNjn3YAQnEw3SkOgWMZC8BlG7ER81NS3BKYrdUVdMihzWJuFHt9g\26 _nc_ht\3d scontent-cdg2-1.xx\26 _nc_tp\3d 1\26 oh\3d e51a2b3efbe1f20ea87ecf888f44e2b4\26 oe\3d 5EAAB220&#039;);" id="u_0_dq" /></div><div class="_4ubd _170l _27db _3htz" id="u_0_dr"></div><div class="_npo hidden_elem _3htz" id="u_0_ds"><div class="_3drf"></div><div class="_3x62"><div class="_63rn"><div class="_63rm"><div class="_iij">Vous semblez rencontrer des problèmes pour lire cette vidéo. Si c’est le cas, essayez de redémarrer votre navigateur</div><div class="_iir">Fermer</div></div></div></div></div><div class="_567v _3bw _4ubd _28dy _3htz" id="u_0_dt"><div class="_567_"><div class="_2za- _2vd- uiContextualLayerParent _28dz" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;" id="u_0_du"><div class="_1vx9"><a class="_2za_" href="/watch/?ref=external&amp;v=2908242472529513"><span class="_50f7">Trump responds to base attacks in Iraq</span></a></div><div class="_1vx9">Publié par <a class="_2za_ _5p5v" href="/watch/cgtnamerica/"><span class="_50f7">CGTN America</span></a></div><div class="_1vx9"><span>1 951 vues</span></div></div></div><div class="_5bke" id="u_0_dv"></div></div><i class="_1jto _bsl _4ubd _3htz" id="u_0_5k"><input aria-label="Lire la vid&#xe9;o" type="button" class="accessible_elem" id="u_0_dw" /></i><span class="img _55ym _55yq _55yo _167h _4ubd _1hiu hidden_elem _360f _167h _3htz" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..." id="u_0_5l"></span><div class="_3htz _4ubd _1zmi" id="u_0_dx"></div><div class="_4ivm" id="u_0_dy"></div></div><div class="_2i84"><div id="u_0_dz"></div></div></div></div></div></div><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;" class="_3ekx _29_4"></div></span></div><div class="_42ef"><span class="_3c21"></span></div></div></div></div></div></div><div></div></div></div><div><form rel="async" class="commentable_item" method="post" data-ft="&#123;&quot;tn&quot;:&quot;]&quot;&#125;" action="/ajax/ufi/modify.php" onsubmit="" id="u_0_dj"><input type="hidden" name="jazoest" value="2703" autocomplete="off" /><input type="hidden" name="lsd" value="AVpJ6Pvr" autocomplete="off" /><input type="hidden" autocomplete="off" name="ft_ent_identifier" value="2908242472529513" /><input type="hidden" autocomplete="off" name="data_only_response" value="1" /><div class="_7f6e"><div class="_5vsi"></div><noscript id="u_0_di"></noscript></div></form></div></div></div></div></div></div><div class="_4-u2 _4-u8"><div class="_427x"><div class="_4-u2 mbm _4mrt _5jmm _5pat _5v3q _7cqq _4-u8" data-ft="&#123;&quot;fbfeed_location&quot;:36&#125;" data-fte="1" data-ftr="1" data-xt="AZUJbaLB7_dAyoxS4t01EGzBmTAcO-PbQmY9dthU6xSneArdKdBYkABE9BSNJCQYujIA4KQpD8Kt9d5M_-kbqrkKyGXc3vIJDqlE1FZituNOTCQFPWfWx_uCsOZcEJ96ceq_0TfWTQHnbG-LRHg0FKURHU422OMuH4QvS94b4KZ21TGp5nD1XHwcjfJyDke4TjozOv_BYMwfZBckPMemzqiYlHMXvxNUXRdWBivWC7tdRDTD4RezPxwrlvuph2L1vinnZaKKiTsCilDZuOWVKAwYdpTei3Ewizj654_V0WGQOyZm26QnLf6TlaIr3JfQgK8q3vsd17nvfQD7lRazfXutxc0n8vqctDBy9Au0TOCU2NhSOkQhlLhVaGoh4-ENocWybIVF6wYaafz-Ag3kQ9P1VEIiyg9efwla3OwOBlL2cOLANzJ4fiv6t0G8HW0tFGSuPXT6qxVeP7MlViccfrQEKslUitNonTATGrhcTMnTVhbqs4HkbM31-OFaxnY4KFD9vO4kMlm6LNxPTQFm1Y8HPQJR2hJdX2WjVWddSIge9DK8ytc4OIiEMozhJtaJR6LNzYbR2AG6azk8_Rs2egYf8USP3r8iL4XdgFyIG1GIFlvhI-rgP4ZfeWJTmxFnTs-AE7wqT9jJJnqYG3qMvE29eDAOOYaDwnT3dSUlT7drPf5uI_PRukYho5NPqZLLiCPQh1FRoWf6Y4_0hPFUGjsSqFnIo7XOFmkGsigX-Gh-SkBK0sYSIxNfyrwybb4gfPubUKMBaFHA8d0oLmST7vKwdxsPH_urWbIWvDuK_KVsDndP1xlsIIvAgUhf2xjD2GV_e9VxBKcLJvqmgBLnI65wor7UvYUO9It1zkksaHFA1l-gTNB6ecWgs6aflaRn-PakZtzDBXS5H6cU6pAN2kjoa3K0K1IyZSE1YIG7I4LVQijRK529ETPAbVQdBwD4iguNim0l0ioReWi1E5gHusTp" data-xt-vimp="&#123;&quot;pixel_in_percentage&quot;:0,&quot;duration_in_ms&quot;:1,&quot;client_track_subsequent_impression&quot;:true,&quot;client_no_dedup&quot;:false,&quot;subsequent_gap_in_ms&quot;:60000,&quot;log_initial_nonviewable&quot;:false,&quot;should_batch&quot;:true,&quot;require_horizontally_onscreen&quot;:false,&quot;encrypt_data_xt&quot;:true,&quot;signal_mode_for_ss&quot;:false,&quot;vital_mode_for_ss&quot;:false,&quot;should_not_delay_impression&quot;:true,&quot;should_log_endpoint_info&quot;:true,&quot;log_viewability_events_for_infra_validation&quot;:false,&quot;log_visibility_hidden_when_browser_inactive&quot;:true,&quot;count_blue_bar_height&quot;:true,&quot;detect_occlusion&quot;:false,&quot;should_not_log_on_occlusion&quot;:false,&quot;is_rhc&quot;:false&#125;" id="u_0_t"><div class="_3ccb" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;" data-gt="&#123;&quot;type&quot;:&quot;click2canvas&quot;,&quot;fbsource&quot;:703,&quot;ref&quot;:&quot;nf_generic&quot;&#125;" id="u_0_26"><div></div><div class="_5pcr userContentWrapper" style="" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;"><div class="_1dwg _1w_m _q7o" data-vc-ignore-dynamic="1"><div class="_4r_y" id="u_0_2a"><div class="_1wbl" id="u_0_29"></div></div><div><div class="l_c3pyo2v0u i_c3pynyi2f clearfix"><div class="clearfix y_c3pyo2ta3"><a class="_5pb8 o_c3pynyi2g _8o _8s lfloat _ohe" aria-hidden="true" tabindex="-1" target="" data-ft="&#123;&quot;tn&quot;:&quot;\u003C&quot;&#125;" href="https://www.facebook.com/cgtnamerica/?ref=nf&amp;hc_ref=ARSAwWVRk2Rgmxtle6j6Cydr9-1A45n3rlAU3IGS-wg0lfWvIFWwpZT4w9FEpi2eOr4"><div class="_38vo"><noscript id="u_0_4h"></noscript><div><img class="_s0 _4ooo _5xib _5sq7 _44ma _rw img" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t1.0-1/p50x50/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&amp;_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=3acb44171b892a809a8d6bba8847175c&amp;oe=5EA6F099" alt="" aria-label="CGTN America" role="img" /></div></div></a><div class="clearfix _42ef"><div class="rfloat _ohf"></div><div class="u_c3pyo2ta4"><div><div class="_6a _5u5j"><div class="_6a _6b" style="height:40px"></div><div class="_6a _5u5j _6b"><h5 class="_7tae _14f3 _14f5 _5pbw _5vra" id="u_0_27" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fwn fcg"><span class="fwb fcg" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;"><a href="https://www.facebook.com/cgtnamerica/?hc_ref=ARSibFfT1Adu98uI6QuAKo8rhyXCKCY7f6w73eHyMfhMcu8dg-kQH5iaZXWux_wGyLY&amp;fref=nf">CGTN America</a></span></span></h5><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_300653326696613;2661931933902062;;9" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a href="/cgtnamerica/videos/2810732512322033/" aria-label="Vid&#xe9;o, Ukrainian plane crashes in Iran, Dur&#xe9;e&#xa0;: 50 secondes" ajaxify="/cgtnamerica/videos/vb.300653326696613/2810732512322033/?type=3&amp;source=12" rel="theater" class="_5pcq" target=""><abbr title="08/01/2020 14:23" data-utime="1578522203" data-shorten="1" class="_5ptz timestamp livetimestamp"><span class="timestampContent">11 h</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><div data-hover="tooltip" data-tooltip-content="Ajout&#xe9;e le Mercredi 8 janvier 2020, 14:22" class="inlineBlock"><i class="_5qla img sp_NnQJe0BAlA8 sx_a4e8dc"></i></div><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div></div></div></div></div></div></div><div data-testid="post_message" class="_5pbx userContent _3576" data-ft="&#123;&quot;tn&quot;:&quot;K&quot;&#125;"><p>New video appears to show the deadly plane crash in Iran, that killed all 176 people on board. Iranian and Ukrainian authorities are investigating.<br /> <a href="https://l.facebook.com/l.php?u=https%3A%2F%2Fnews.cgtn.com%2Fnews%2F2020-01-08%2FUkrainian-plane-with-180-aboard-crashes-near-Tehran-N56HEMRS0g%2Findex.html&amp;h=AT2LHt-2BChp2QFCrqi2fut7nGuuNBqJuE1tFgEARuKZbkLV-UxMu38hQ0sbfEzFUlp9boPfdbL371qczGrDDgf-lbNbXvLN-Z0ga5hDigEjZq-h5-Y6MA2eNRMS3uoySCrzF88Nd14DTkEhuQC7PGeM5oVKPyUupX9O_LLwYMcomw" target="_blank" data-ft="&#123;&quot;tn&quot;:&quot;-U&quot;&#125;" rel="nofollow" data-lynx-mode="hover">https://news.cgtn.com/…/Ukrainian-plane-with-180…/index.html</a></p></div><div class="_3x-2" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="mtm"><div id="u_0_28" class="_6m2 _1zpr clearfix _dcs _4_w4 _6m8 _59ap _64lx _3eqz _20pq _3eqw _2rk1 _1-9r _5qqr" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="clearfix _2r3x"><div class="lfloat _ohe"><span class="_3m6-"><div class="_150c" data-ft="&#123;&quot;tn&quot;:&quot;F&quot;&#125;"><img class="_3chq" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/71800747_1033919560276421_6015559507202015232_n.jpg?_nc_cat=101&amp;_nc_ohc=oUFbTqihP-kAQn_feL1MxUGcnbxxbmAMx3pdKmaOpGNuqP_S8R_l0-Pvg&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=b58310b569a70debd6e95629fef48928&amp;oe=5EAB0572" /><div class="_5mly _45oh" id="u_0_41"><div class="_5v-_" id="u_0_42"><div class="_1c_u _45oh" id="u_0_43"><div class="_53j5" style="height:282px;width:500px;" tabindex="0" id="u_0_44"><video height="282" width="500" preload="metadata" style="" class="_ox1 _21y0" data-video-width="500" data-video-height="282" data-original-aspect-ratio="1.7777777777778" id="u_0_45"></video><div class="_4lpe _3htz"><img class="_4lpf" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/71800747_1033919560276421_6015559507202015232_n.jpg?_nc_cat=101&amp;_nc_ohc=oUFbTqihP-kAQn_feL1MxUGcnbxxbmAMx3pdKmaOpGNuqP_S8R_l0-Pvg&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=b58310b569a70debd6e95629fef48928&amp;oe=5EAB0572" /></div><div class="_m54 _1jto _3htz" id="u_0_46"><img class="_1445 _2sy9 img" src="https://static.xx.fbcdn.net/rsrc.php/v3/y4/r/-PAXP-deijE.gif" alt="" style="background-image: url(&#039;https\3a //scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/s526x296/71800747_1033919560276421_6015559507202015232_n.jpg?_nc_cat\3d 101\26 _nc_ohc\3d oUFbTqihP-kAQn_feL1MxUGcnbxxbmAMx3pdKmaOpGNuqP_S8R_l0-Pvg\26 _nc_ht\3d scontent-cdg2-1.xx\26 _nc_tp\3d 1\26 oh\3d 4e314e2e34c193c71d22f2c724f9b674\26 oe\3d 5EADA151&#039;);" id="u_0_47" /></div><div class="_4ubd _170l _27db _3htz" id="u_0_48"></div><div class="_npo hidden_elem _3htz" id="u_0_49"><div class="_3drf"></div><div class="_3x62"><div class="_63rn"><div class="_63rm"><div class="_iij">Vous semblez rencontrer des problèmes pour lire cette vidéo. Si c’est le cas, essayez de redémarrer votre navigateur</div><div class="_iir">Fermer</div></div></div></div></div><div class="_567v _3bw _4ubd _28dy _3htz" id="u_0_4a"><div class="_567_"><div class="_2za- _2vd- uiContextualLayerParent _28dz" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;" id="u_0_4b"><div class="_1vx9"><a class="_2za_" href="/watch/?ref=external&amp;v=2810732512322033"><span class="_50f7">Ukrainian plane crashes in Iran</span></a></div><div class="_1vx9">Publié par <a class="_2za_ _5p5v" href="/watch/cgtnamerica/"><span class="_50f7">CGTN America</span></a></div><div class="_1vx9"><span>493 vues</span></div></div></div><div class="_5bke" id="u_0_4c"></div></div><i class="_1jto _bsl _4ubd _3htz" id="u_0_2o"><input aria-label="Lire la vid&#xe9;o" type="button" class="accessible_elem" id="u_0_4d" /></i><span class="img _55ym _55yq _55yo _167h _4ubd _1hiu hidden_elem _360f _167h _3htz" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..." id="u_0_2p"></span><div class="_3htz _4ubd _1zmi" id="u_0_4e"></div><div class="_4ivm" id="u_0_4f"></div></div><div class="_2i84"><div id="u_0_4g"></div></div></div></div></div></div><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;" class="_3ekx _29_4"></div></span></div><div class="_42ef"><span class="_3c21"></span></div></div></div></div></div></div><div></div></div></div><div><form rel="async" class="commentable_item" method="post" data-ft="&#123;&quot;tn&quot;:&quot;]&quot;&#125;" action="/ajax/ufi/modify.php" onsubmit="" id="u_0_3w"><input type="hidden" name="jazoest" value="2703" autocomplete="off" /><input type="hidden" name="lsd" value="AVpJ6Pvr" autocomplete="off" /><input type="hidden" autocomplete="off" name="ft_ent_identifier" value="2810732512322033" /><input type="hidden" autocomplete="off" name="data_only_response" value="1" /><div class="_7f6e"><div class="_5vsi"></div><noscript id="u_0_3v"></noscript></div></form></div></div></div></div></div></div><div class="_4-u2 _4-u8"><div class="_427x"><div class="_4-u2 mbm _4mrt _5jmm _5pat _5v3q _7cqq _4-u8" data-ft="&#123;&quot;fbfeed_location&quot;:36&#125;" data-fte="1" data-ftr="1" data-xt="AZU8_LG3_HJUQX0rz-mO9g-ZEEsy9Wd3mFb1hu8w9RGzqY_LVMjCvj3F4fP4YC3p20FR7O6SHLuemS0pyXxcCldzS_zHJqtcRk5wplbU66JEch_vAUtaucGEKihMhm98PxNTKE4hq-DVoB0UjF3LepLydWaDEZTMreHDT-mlkYJFaaGUjxFqZUnhmIAFTvL545-kTbelqQxkaGrDbNKzTpl29DORQtwVaTyIkX2sQ2QTzDneU1oU20-JYuZIQFDbY4a4Q9JYNsLIIdZxRCQeptsKDfCPeSIDbTzODw3MwGGWpHjX6OztyH6G2ii_kUs-O2P87C1IkC93qnOvKyi3f_88xOi5jWV-9vdpKtGTgE-Gr1CDT8IlWrvRh240nC7Ft5xQjEWQhFFlqkE_r8GRfIzyDPb_G3mxL6iK7wNQ8zfEj26aM3olGOUZYnKZ8UAezS0z6M1wdFCwkKhYaMrR7jDEEfqPl5w22KW2KMwSKPbyT4SfXZKFYa24XuKlrwaJj-k8yyE2C_SYqFoNKLFEWZPALv3RY_SDkWCfhtAneyTG5EFxPFBXCaxajfnZGw5GHAh8cRgJosL9L4rFcsPSRJpFDYKavjZ_ruC8V-nSnzIAroR9LRL_JIIff-pPU51hn9WjmqNmAkhLF65cG5H7xqE2mEQQm6RFtZ6lcqE1fv2UU3YvCG6DQHDiBkELZouYQWai39YpdRbySBpQRT07GT5Q___cVnQx8ltaX45UDZaAEEb_EK-oDV3YSngXWs5gKevLfyZ9koExmTFN8_juiZX_KFHaZuMx_UOtcLMah6_V23W4ZFuQ4ebJVWChG5aaiC-BFc3gUHtTggVvN4rTQyDer1Rib8Dl1WhFrgJp-K2tF8A-O1wxixNeM8R59SHCOJ5zeVRyalZdYdCeQcYtAW6J-6B2I2sIY595P-kUHFbusW4NtrN5myKeLz6v-80lROq_JjYP65eeJzc3O79UQz7N" data-xt-vimp="&#123;&quot;pixel_in_percentage&quot;:0,&quot;duration_in_ms&quot;:1,&quot;client_track_subsequent_impression&quot;:true,&quot;client_no_dedup&quot;:false,&quot;subsequent_gap_in_ms&quot;:60000,&quot;log_initial_nonviewable&quot;:false,&quot;should_batch&quot;:true,&quot;require_horizontally_onscreen&quot;:false,&quot;encrypt_data_xt&quot;:true,&quot;signal_mode_for_ss&quot;:false,&quot;vital_mode_for_ss&quot;:false,&quot;should_not_delay_impression&quot;:true,&quot;should_log_endpoint_info&quot;:true,&quot;log_viewability_events_for_infra_validation&quot;:false,&quot;log_visibility_hidden_when_browser_inactive&quot;:true,&quot;count_blue_bar_height&quot;:true,&quot;detect_occlusion&quot;:false,&quot;should_not_log_on_occlusion&quot;:false,&quot;is_rhc&quot;:false&#125;" id="u_0_u"><div class="_3ccb" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;" data-gt="&#123;&quot;type&quot;:&quot;click2canvas&quot;,&quot;fbsource&quot;:703,&quot;ref&quot;:&quot;nf_generic&quot;&#125;" id="u_0_2r"><div></div><div class="_5pcr userContentWrapper" style="" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;"><div class="_1dwg _1w_m _q7o" data-vc-ignore-dynamic="1"><div class="_4r_y" id="u_0_35"><div class="_1wbl" id="u_0_34"></div></div><div><div class="l_c3pyo2v0u i_c3pynyi2f clearfix"><div class="clearfix y_c3pyo2ta3"><a class="_5pb8 o_c3pynyi2g _8o _8s lfloat _ohe" aria-hidden="true" tabindex="-1" target="" data-ft="&#123;&quot;tn&quot;:&quot;\u003C&quot;&#125;" href="https://www.facebook.com/cgtnamerica/?ref=nf&amp;hc_ref=ART1V7VYBn_NwC3xOyAD_I4lmIKbmoupCGoNUP9b2Q_W4QYvNrhtTFIOK9gIMaDwJyo"><div class="_38vo"><noscript id="u_0_bf"></noscript><div><img class="_s0 _4ooo _5xib _5sq7 _44ma _rw img" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t1.0-1/p50x50/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&amp;_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=3acb44171b892a809a8d6bba8847175c&amp;oe=5EA6F099" alt="" aria-label="CGTN America" role="img" /></div></div></a><div class="clearfix _42ef"><div class="rfloat _ohf"></div><div class="u_c3pyo2ta4"><div><div class="_6a _5u5j"><div class="_6a _6b" style="height:40px"></div><div class="_6a _5u5j _6b"><h5 class="_7tae _14f3 _14f5 _5pbw _5vra" id="u_0_32" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fwn fcg"><span class="fwb fcg" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;"><a href="https://www.facebook.com/cgtnamerica/?hc_ref=ARRaQlbhIC8COTL1sluYnvD0C-FCIcCK6V7itDMJxeY2quaUHNxMNxkas-hHsDP3JmQ&amp;fref=nf">CGTN America</a></span></span></h5><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_300653326696613;2661922137236375;;9" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a href="/cgtnamerica/videos/1344692685696690/" aria-label="Vid&#xe9;o, Trump responds to base attacks in Iraq, Dur&#xe9;e&#xa0;: 29 secondes" ajaxify="/cgtnamerica/videos/vb.300653326696613/1344692685696690/?type=3&amp;source=12" rel="theater" class="_5pcq" target=""><abbr title="08/01/2020 14:16" data-utime="1578521787" data-shorten="1" class="_5ptz timestamp livetimestamp"><span class="timestampContent">11 h</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><div data-hover="tooltip" data-tooltip-content="Ajout&#xe9;e le Mercredi 8 janvier 2020, 14:15" class="inlineBlock"><i class="_5qla img sp_NnQJe0BAlA8 sx_a4e8dc"></i></div><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div></div></div></div></div></div></div><div data-testid="post_message" class="_5pbx userContent _3576" data-ft="&#123;&quot;tn&quot;:&quot;K&quot;&#125;"><p>President Trump says Iran’s “campaign of terror, murder, mayhem will not be tolerated any longer.” <br /> <a href="https://l.facebook.com/l.php?u=https%3A%2F%2Fnewsus.cgtn.com%2Fnews%2F2020-01-09%2FWhite-House-correspondent-analysis-on-Trump-s-Iran-speech--N6dmfRLrws%2Findex.html&amp;h=AT3xKrN3G9Ynw-H9Un3ooNPgsGf3rmX39-GgZli-1t8vYBy7RDjgk-udK19qmcCoTRoDo4ZpaDr_c-4wiaDepLscXPoo4hVDttwR2JLKJY5ubTeeWWedIKdjO-yPdEa5VC8SNS83T2R3zuTA9TE-SFs8AOMDWPUO2FQGx3wZy7RWJQ" target="_blank" data-ft="&#123;&quot;tn&quot;:&quot;-U&quot;&#125;" rel="nofollow" data-lynx-mode="hover">https://newsus.cgtn.com/…/White-House-correspond…/index.html</a></p></div><div class="_3x-2" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="mtm"><div id="u_0_33" class="_6m2 _1zpr clearfix _dcs _4_w4 _6m8 _59ap _64lx _3eqz _20pq _3eqw _2rk1 _1-9r _5qqr" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="clearfix _2r3x"><div class="lfloat _ohe"><span class="_3m6-"><div class="_150c" data-ft="&#123;&quot;tn&quot;:&quot;F&quot;&#125;"><img class="_3chq" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/73554091_2755049097867480_1632472667837693952_n.jpg?_nc_cat=102&amp;_nc_ohc=a-xmDX_mjkkAQnnzO7s7hc-iGR3cYu0sWCK3fpm2221noTDtKhiHAItCA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=aa363fa9b3a73010f9dbd06917870025&amp;oe=5EB267CA" /><div class="_5mly _45oh" id="u_0_az"><div class="_5v-_" id="u_0_b0"><div class="_1c_u _45oh" id="u_0_b1"><div class="_53j5" style="height:282px;width:500px;" tabindex="0" id="u_0_b2"><video height="282" width="500" preload="metadata" style="" class="_ox1 _21y0" data-video-width="500" data-video-height="282" data-original-aspect-ratio="1.7777777777778" id="u_0_b3"></video><div class="_4lpe _3htz"><img class="_4lpf" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/73554091_2755049097867480_1632472667837693952_n.jpg?_nc_cat=102&amp;_nc_ohc=a-xmDX_mjkkAQnnzO7s7hc-iGR3cYu0sWCK3fpm2221noTDtKhiHAItCA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=aa363fa9b3a73010f9dbd06917870025&amp;oe=5EB267CA" /></div><div class="_m54 _1jto _3htz" id="u_0_b4"><img class="_1445 _2sy9 img" src="https://static.xx.fbcdn.net/rsrc.php/v3/y4/r/-PAXP-deijE.gif" alt="" style="background-image: url(&#039;https\3a //scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/s526x296/73554091_2755049097867480_1632472667837693952_n.jpg?_nc_cat\3d 102\26 _nc_ohc\3d a-xmDX_mjkkAQnnzO7s7hc-iGR3cYu0sWCK3fpm2221noTDtKhiHAItCA\26 _nc_ht\3d scontent-cdg2-1.xx\26 _nc_tp\3d 1\26 oh\3d 16433e22745e903c95a93ddce4880c7c\26 oe\3d 5EA891E9&#039;);" id="u_0_b5" /></div><div class="_4ubd _170l _27db _3htz" id="u_0_b6"></div><div class="_npo hidden_elem _3htz" id="u_0_b7"><div class="_3drf"></div><div class="_3x62"><div class="_63rn"><div class="_63rm"><div class="_iij">Vous semblez rencontrer des problèmes pour lire cette vidéo. Si c’est le cas, essayez de redémarrer votre navigateur</div><div class="_iir">Fermer</div></div></div></div></div><div class="_567v _3bw _4ubd _28dy _3htz" id="u_0_b8"><div class="_567_"><div class="_2za- _2vd- uiContextualLayerParent _28dz" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;" id="u_0_b9"><div class="_1vx9"><a class="_2za_" href="/watch/?ref=external&amp;v=1344692685696690"><span class="_50f7">Trump responds to base attacks in Iraq</span></a></div><div class="_1vx9">Publié par <a class="_2za_ _5p5v" href="/watch/cgtnamerica/"><span class="_50f7">CGTN America</span></a></div><div class="_1vx9"><span>2 040 vues</span></div></div></div><div class="_5bke" id="u_0_ba"></div></div><i class="_1jto _bsl _4ubd _3htz" id="u_0_ae"><input aria-label="Lire la vid&#xe9;o" type="button" class="accessible_elem" id="u_0_bb" /></i><span class="img _55ym _55yq _55yo _167h _4ubd _1hiu hidden_elem _360f _167h _3htz" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..." id="u_0_af"></span><div class="_3htz _4ubd _1zmi" id="u_0_bc"></div><div class="_4ivm" id="u_0_bd"></div></div><div class="_2i84"><div id="u_0_be"></div></div></div></div></div></div><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;" class="_3ekx _29_4"></div></span></div><div class="_42ef"><span class="_3c21"></span></div></div></div></div></div></div><div></div></div></div><div><form rel="async" class="commentable_item" method="post" data-ft="&#123;&quot;tn&quot;:&quot;]&quot;&#125;" action="/ajax/ufi/modify.php" onsubmit="" id="u_0_a8"><input type="hidden" name="jazoest" value="2703" autocomplete="off" /><input type="hidden" name="lsd" value="AVpJ6Pvr" autocomplete="off" /><input type="hidden" autocomplete="off" name="ft_ent_identifier" value="1344692685696690" /><input type="hidden" autocomplete="off" name="data_only_response" value="1" /><div class="_7f6e"><div class="_5vsi"></div><noscript id="u_0_a7"></noscript></div></form></div></div></div></div></div></div><div class="_4-u2 _4-u8"><div class="_427x"><div class="_4-u2 mbm _4mrt _5jmm _5pat _5v3q _7cqq _4-u8" data-ft="&#123;&quot;fbfeed_location&quot;:36&#125;" data-fte="1" data-ftr="1" data-xt="AZV3_iXaB5APdAWqxXNQ3awSU-JEvrBA5Fz4JTDbEVvbumu3JAFjMyadjgq9MOtqA5sZ_QmBFTy0H6RdzdaOQod61ssbXNN3rE6Gk5Hw42BLqHEw3vRCaBjYZcouBAX5qs2mOcInutldYt8vqeC_GG06PT6s5APydTX1gG-IWMqwhPs7rz6hZ3OM62bUVpfNDXojMGDeScEZYQJx5nw1hffMi8lN3KJvcFh72B6M-e9g048sGLAmDchfisaf8DN3vUqMZ0fcipj8LWRzjBNfMMjZbi3vxSBsUU1uDa4_iLoB3Kc6pIeFyAbX_LwwDT8GGhcPtV05NBlRRPhiAzMSxElJ9KAYr29xNXumAEsX9k5Z6RTPVv4FM91jJxiiDny544yuq_5GHXPLiv4l71sgTNckDbl8tRX-vMrBIt1y5_mpuUWKOwS0EaKng482-YSbTDzZRS-ALXe_3icVFPlZWo8Aez-z3tZGrn1KNajwF1VzQLWyd7wQ45CdgHJpczdb0QwG_NyN4qc7zTW880kNdCv9SbGGdofKezKoWafFuF-Wwd2gFvx0IatPfByuLfAbhBDA_Rw6YHKV_1FB8YR0Ua2V98dimz0nEnp3QdAmMQ0B3EyW54vCaHavw6blZszh2BD2iLPvFNbXXSk2VnUXNaYNGU9DUresRwBYMk_Jz3uUnk3316LcyioDhyCfd5J8xY5rORdxKZ9HiPhghWxcUflIiubTy0mx7BEl6V1npb4WYruFqgu8pGNtsLxOgLSYyTvtTO6f3DSng49IqI4lxGsyVXJExxEJ3Rz99QHhqXI0dq0PE5cqtwVfj66nDlRqw5If72dvfp3o4DwwHXVRxZnMP4LCFU6CEX-C7CxWXrGoWWFeDOEysI2nCViuGhR_Rh8Yr87uSw2-d-JT0WYvYXHdFZr9RzRFSLinaeNhLmKAUBBA6nR3dxx8_QJ64tBN3NBlrdWfDyU49kNNBN94yHH0" data-xt-vimp="&#123;&quot;pixel_in_percentage&quot;:0,&quot;duration_in_ms&quot;:1,&quot;client_track_subsequent_impression&quot;:true,&quot;client_no_dedup&quot;:false,&quot;subsequent_gap_in_ms&quot;:60000,&quot;log_initial_nonviewable&quot;:false,&quot;should_batch&quot;:true,&quot;require_horizontally_onscreen&quot;:false,&quot;encrypt_data_xt&quot;:true,&quot;signal_mode_for_ss&quot;:false,&quot;vital_mode_for_ss&quot;:false,&quot;should_not_delay_impression&quot;:true,&quot;should_log_endpoint_info&quot;:true,&quot;log_viewability_events_for_infra_validation&quot;:false,&quot;log_visibility_hidden_when_browser_inactive&quot;:true,&quot;count_blue_bar_height&quot;:true,&quot;detect_occlusion&quot;:false,&quot;should_not_log_on_occlusion&quot;:false,&quot;is_rhc&quot;:false&#125;" id="u_0_v"><div class="_3ccb" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;" data-gt="&#123;&quot;type&quot;:&quot;click2canvas&quot;,&quot;fbsource&quot;:703,&quot;ref&quot;:&quot;nf_generic&quot;&#125;" id="u_0_2m"><div></div><div class="_5pcr userContentWrapper" style="" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;"><div class="_1dwg _1w_m _q7o" data-vc-ignore-dynamic="1"><div class="_4r_y" id="u_0_4m"><div class="_1wbl" id="u_0_4l"></div></div><div><div class="l_c3pyo2v0u i_c3pynyi2f clearfix"><div class="clearfix y_c3pyo2ta3"><a class="_5pb8 o_c3pynyi2g _8o _8s lfloat _ohe" aria-hidden="true" tabindex="-1" target="" data-ft="&#123;&quot;tn&quot;:&quot;\u003C&quot;&#125;" href="https://www.facebook.com/cgtnamerica/?ref=nf&amp;hc_ref=ARSF1Qp7uMoJtVDJHOeTv5w4yKwueUQFT6gwJGKxTsKnbqDOSydxYXTQo3LdnXBLfx8"><div class="_38vo"><noscript id="u_0_9j"></noscript><div><img class="_s0 _4ooo _5xib _5sq7 _44ma _rw img" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t1.0-1/p50x50/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&amp;_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=3acb44171b892a809a8d6bba8847175c&amp;oe=5EA6F099" alt="" aria-label="CGTN America" role="img" /></div></div></a><div class="clearfix _42ef"><div class="rfloat _ohf"></div><div class="u_c3pyo2ta4"><div><div class="_6a _5u5j"><div class="_6a _6b" style="height:40px"></div><div class="_6a _5u5j _6b"><h5 class="_7tae _14f3 _14f5 _5pbw _5vra" id="u_0_3s" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fwn fcg"><span class="fwb fcg" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;"><a href="https://www.facebook.com/cgtnamerica/?hc_ref=ARQsjGaGL7NEAA-yt-quKiVGQ3rZ7-e9rsb9DIpBIpquJmft7aCB4hlpXpZjhPe7APc&amp;fref=nf">CGTN America</a></span></span></h5><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_300653326696613;2661896813905574;;9" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a href="/cgtnamerica/videos/1054162518271150/" aria-label="Vid&#xe9;o, Trump responds to base attacks in Iraq, Dur&#xe9;e&#xa0;: 35 secondes" ajaxify="/cgtnamerica/videos/vb.300653326696613/1054162518271150/?type=3&amp;source=12" rel="theater" class="_5pcq" target=""><abbr title="08/01/2020 13:58" data-utime="1578520721" data-shorten="1" class="_5ptz timestamp livetimestamp"><span class="timestampContent">12 h</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><div data-hover="tooltip" data-tooltip-content="Ajout&#xe9;e le Mercredi 8 janvier 2020, 13:58" class="inlineBlock"><i class="_5qla img sp_NnQJe0BAlA8 sx_a4e8dc"></i></div><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div></div></div></div></div></div></div><div data-testid="post_message" class="_5pbx userContent _3576" data-ft="&#123;&quot;tn&quot;:&quot;K&quot;&#125;"><p>President Trump says he wants to work toward a deal that can benefit the Iranian people.<br /> <a href="https://l.facebook.com/l.php?u=https%3A%2F%2Fnewsus.cgtn.com%2Fnews%2F2020-01-09%2FWhite-House-correspondent-analysis-on-Trump-s-Iran-speech--N6dmfRLrws%2Findex.html&amp;h=AT3dBqyKE0T1JtZ9Niuvsj0N5Euyr3Rx4NjQUZMfknIARBW8k90eWo3iTBVop3jaacjvf0GxskPwREUSyOtU7PtCEIQazrl7pWS-o41y3L0xq_aUsKSK2sqjdz5LSbEPLAQl7DKLpC_FsfvBmmOdg2qx5Wfc_M-pN51V8g0UT8hDGA" target="_blank" data-ft="&#123;&quot;tn&quot;:&quot;-U&quot;&#125;" rel="nofollow" data-lynx-mode="hover">https://newsus.cgtn.com/…/White-House-correspond…/index.html</a></p></div><div class="_3x-2" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="mtm"><div id="u_0_4k" class="_6m2 _1zpr clearfix _dcs _4_w4 _6m8 _59ap _64lx _3eqz _20pq _3eqw _2rk1 _1-9r _5qqr" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="clearfix _2r3x"><div class="lfloat _ohe"><span class="_3m6-"><div class="_150c" data-ft="&#123;&quot;tn&quot;:&quot;F&quot;&#125;"><img class="_3chq" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/71189975_535150503749904_1152906914602942464_n.jpg?_nc_cat=111&amp;_nc_ohc=ioViwPu0t4sAQmtrvObu2RZKvTIGWm9Acw95eJr_Sj3vWamHbINvFNKlg&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=4ed42eeb680264167cc889429bd68b18&amp;oe=5EA93BA8" /><div class="_5mly _45oh" id="u_0_8p"><div class="_5v-_" id="u_0_8q"><div class="_1c_u _45oh" id="u_0_8r"><div class="_53j5" style="height:282px;width:500px;" tabindex="0" id="u_0_8s"><video height="282" width="500" preload="metadata" style="" class="_ox1 _21y0" data-video-width="500" data-video-height="282" data-original-aspect-ratio="1.7777777777778" id="u_0_8t"></video><div class="_4lpe _3htz"><img class="_4lpf" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/71189975_535150503749904_1152906914602942464_n.jpg?_nc_cat=111&amp;_nc_ohc=ioViwPu0t4sAQmtrvObu2RZKvTIGWm9Acw95eJr_Sj3vWamHbINvFNKlg&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=4ed42eeb680264167cc889429bd68b18&amp;oe=5EA93BA8" /></div><div class="_m54 _1jto _3htz" id="u_0_8u"><img class="_1445 _2sy9 img" src="https://static.xx.fbcdn.net/rsrc.php/v3/y4/r/-PAXP-deijE.gif" alt="" style="background-image: url(&#039;https\3a //scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/s526x296/71189975_535150503749904_1152906914602942464_n.jpg?_nc_cat\3d 111\26 _nc_ohc\3d ioViwPu0t4sAQmtrvObu2RZKvTIGWm9Acw95eJr_Sj3vWamHbINvFNKlg\26 _nc_ht\3d scontent-cdg2-1.xx\26 _nc_tp\3d 1\26 oh\3d 58527ee231bc44a6ee403fbf23b07843\26 oe\3d 5EA5177C&#039;);" id="u_0_8v" /></div><div class="_4ubd _170l _27db _3htz" id="u_0_8w"></div><div class="_npo hidden_elem _3htz" id="u_0_8x"><div class="_3drf"></div><div class="_3x62"><div class="_63rn"><div class="_63rm"><div class="_iij">Vous semblez rencontrer des problèmes pour lire cette vidéo. Si c’est le cas, essayez de redémarrer votre navigateur</div><div class="_iir">Fermer</div></div></div></div></div><div class="_567v _3bw _4ubd _28dy _3htz" id="u_0_8y"><div class="_567_"><div class="_2za- _2vd- uiContextualLayerParent _28dz" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;" id="u_0_8z"><div class="_1vx9"><a class="_2za_" href="/watch/?ref=external&amp;v=1054162518271150"><span class="_50f7">Trump responds to base attacks in Iraq</span></a></div><div class="_1vx9">Publié par <a class="_2za_ _5p5v" href="/watch/cgtnamerica/"><span class="_50f7">CGTN America</span></a></div><div class="_1vx9"><span>4 310 vues</span></div></div></div><div class="_5bke" id="u_0_90"></div></div><i class="_1jto _bsl _4ubd _3htz" id="u_0_7f"><input aria-label="Lire la vid&#xe9;o" type="button" class="accessible_elem" id="u_0_91" /></i><span class="img _55ym _55yq _55yo _167h _4ubd _1hiu hidden_elem _360f _167h _3htz" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..." id="u_0_7g"></span><div class="_3htz _4ubd _1zmi" id="u_0_92"></div><div class="_4ivm" id="u_0_93"></div></div><div class="_2i84"><div id="u_0_94"></div></div></div></div></div></div><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;" class="_3ekx _29_4"></div></span></div><div class="_42ef"><span class="_3c21"></span></div></div></div></div></div></div><div></div></div></div><div><form rel="async" class="commentable_item" method="post" data-ft="&#123;&quot;tn&quot;:&quot;]&quot;&#125;" action="/ajax/ufi/modify.php" onsubmit="" id="u_0_9i"><input type="hidden" name="jazoest" value="2703" autocomplete="off" /><input type="hidden" name="lsd" value="AVpJ6Pvr" autocomplete="off" /><input type="hidden" autocomplete="off" name="ft_ent_identifier" value="1054162518271150" /><input type="hidden" autocomplete="off" name="data_only_response" value="1" /><div class="_7f6e"><div class="_5vsi"></div><noscript id="u_0_9h"></noscript></div></form></div></div></div></div></div></div><div class="_4-u2 _4-u8"><div class="_427x"><div class="_4-u2 mbm _4mrt _5jmm _5pat _5v3q _7cqq _4-u8" data-ft="&#123;&quot;fbfeed_location&quot;:36&#125;" data-fte="1" data-ftr="1" data-xt="AZWeHbqFfhiXgdA2YkOvPNm5i_LU-XqxlEEAoT7xzpYfZgWs0kUryJHAKdcNfBXkmQrJWNKhDnUYo1YDsoxkhEbzFgswKTw0hyl4KcvH_xhXpNo7PuTfbjpDhbCvyBZAjWV4IGn7tfZJM1UUn45OjItPphvSuHwpPswf4ict6pAy6lbzWz9rJCfAjd72G-3TDhNj5xmql4vyXHYlTb46-Xntj7S0v8uOC2aKkCQWb7vSxlkK9vQVy774BCRNvAUWpJ2kxv7-nalGNqOnVzY3uYmjSN_tr6cvDwQBQgZ9AZR4btN1EtD5uB2ZtGR7V6u_aMIbRFDDNiaRm0CLJXyX_VN8ezIBkaEfWd58O75hM0i22p27uLlBj408GKP-S2noJnvhhq1HN5JrORFXTEQWbiua-bgbBxr03GGovYJ62KuLmf3gXGpQWc4049JFUqoKlBgDiUlWiQYhkRcphqXCW6Y9LipfI0gaDzma6LWHSdvZDyGCt3gsOpaZh_kZdBeXbmh3C0IiVJY9hL7CNYAUP_97rpjoS85deM_oUOS0b1rrMpdiBuiDWGz0mgTSkTPod7slg64KD9lXTSFsL62ZRWoRdJyDPZSKK9bg38lfluKLmZTekPJyHAts48mBWK54kMRTJKxK2BcosyoAi2tBuXRDdnTHhdO2YONWmg84LA0ndpMwd22Ke0QXXjEmDPjoOVFq8KjSfPvqK3fDY6cUnYRLoQQx0igBM_Ss2kcUyMccLDbozASDOE6UhJx4EE4VmA14jD1bczakVFD-UUewcq2eZlOkV-EuKAME8uEnQgpXCzrshVviD7IbxT2WN1-NU6jR9Wz6Vr-2kl0fdh59DA-T-wK-H-ZliLg1NEDrSx1Qctx0xr9XEXerEOyTe8xL-QsuIX_AwdZ2sB10IIW4akNEMRRSjrzxIjVFuADV4Hmd9-6zRDCfjd0Ku8d1an5uCy1o5t6dT-ZfOD6AoRo1cmGR" data-xt-vimp="&#123;&quot;pixel_in_percentage&quot;:0,&quot;duration_in_ms&quot;:1,&quot;client_track_subsequent_impression&quot;:true,&quot;client_no_dedup&quot;:false,&quot;subsequent_gap_in_ms&quot;:60000,&quot;log_initial_nonviewable&quot;:false,&quot;should_batch&quot;:true,&quot;require_horizontally_onscreen&quot;:false,&quot;encrypt_data_xt&quot;:true,&quot;signal_mode_for_ss&quot;:false,&quot;vital_mode_for_ss&quot;:false,&quot;should_not_delay_impression&quot;:true,&quot;should_log_endpoint_info&quot;:true,&quot;log_viewability_events_for_infra_validation&quot;:false,&quot;log_visibility_hidden_when_browser_inactive&quot;:true,&quot;count_blue_bar_height&quot;:true,&quot;detect_occlusion&quot;:false,&quot;should_not_log_on_occlusion&quot;:false,&quot;is_rhc&quot;:false&#125;" id="u_0_w"><div class="_3ccb" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;" data-gt="&#123;&quot;type&quot;:&quot;click2canvas&quot;,&quot;fbsource&quot;:703,&quot;ref&quot;:&quot;nf_generic&quot;&#125;" id="u_0_2h"><div></div><div class="_5pcr userContentWrapper" style="" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;"><div class="_1dwg _1w_m _q7o" data-vc-ignore-dynamic="1"><div class="_4r_y" id="u_0_2l"><div class="_1wbl" id="u_0_2k"></div></div><div><div class="l_c3pyo2v0u i_c3pynyi2f clearfix"><div class="clearfix y_c3pyo2ta3"><a class="_5pb8 o_c3pynyi2g _8o _8s lfloat _ohe" aria-hidden="true" tabindex="-1" target="" data-ft="&#123;&quot;tn&quot;:&quot;\u003C&quot;&#125;" href="https://www.facebook.com/cgtnamerica/?ref=nf&amp;hc_ref=ART5cP9dUZ87oOUOArZ4roB_2W1HiIEjrWmfO495PvF08aV07MWqop5B1JHOSKG4YKg"><div class="_38vo"><noscript id="u_0_6i"></noscript><div><img class="_s0 _4ooo _5xib _5sq7 _44ma _rw img" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t1.0-1/p50x50/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&amp;_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=3acb44171b892a809a8d6bba8847175c&amp;oe=5EA6F099" alt="" aria-label="CGTN America" role="img" /></div></div></a><div class="clearfix _42ef"><div class="rfloat _ohf"></div><div class="u_c3pyo2ta4"><div><div class="_6a _5u5j"><div class="_6a _6b" style="height:40px"></div><div class="_6a _5u5j _6b"><h5 class="_7tae _14f3 _14f5 _5pbw _5vra" id="u_0_2i" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fwn fcg"><span class="fwb fcg" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;"><a href="https://www.facebook.com/cgtnamerica/?hc_ref=ARRoMTgcxi7uPnZv13vRqQUJf_k8N9wHMU8FgRecOzTqV7MF6bBQZEH2aZwivS9O4lI&amp;fref=nf">CGTN America</a></span></span></h5><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_300653326696613;2661869580574964;;9" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a href="/cgtnamerica/videos/473117833606224/" aria-label="Vid&#xe9;o, Self-driving car, Dur&#xe9;e&#xa0;: 56 secondes" ajaxify="/cgtnamerica/videos/vb.300653326696613/473117833606224/?type=3&amp;source=12" rel="theater" class="_5pcq" target=""><abbr title="08/01/2020 13:39" data-utime="1578519582" data-shorten="1" class="_5ptz timestamp livetimestamp"><span class="timestampContent">12 h</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><div data-hover="tooltip" data-tooltip-content="Ajout&#xe9;e le Mercredi 8 janvier 2020, 13:39" class="inlineBlock"><i class="_5qla img sp_NnQJe0BAlA8 sx_a4e8dc"></i></div><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div></div></div></div></div></div></div><div data-testid="post_message" class="_5pbx userContent _3576" data-ft="&#123;&quot;tn&quot;:&quot;K&quot;&#125;"><p>Self-driving cars are one of CES’s most popular attractions this year. Watch a BMW car with no human driver, drive through an obstacle course.<br /> <a href="https://l.facebook.com/l.php?u=https%3A%2F%2Fnewsus.cgtn.com%2Fnews%2F2020-01-09%2FRiding-in-a-self-driving-car-at-CES-2020-N6g8hx8KQ0%2Findex.html&amp;h=AT1l_n-ac6WH1N88yDMDMgshKGrhVtYtNc1OzmIkjzrPdadLU7liQa54JFpX3JLbn6YM9HssMO2eDjzJEilhDjdR4KgfLHyTC0ozO7qH-DAPG42SlDd9ue2gjM06sjHKzixn_wrSIDGqHUycdUb2um9WYHzfuGoQqw96T6vF9vXzFA" target="_blank" data-ft="&#123;&quot;tn&quot;:&quot;-U&quot;&#125;" rel="nofollow" data-lynx-mode="hover">https://newsus.cgtn.com/…/Riding-in-a-self-drivi…/index.html</a></p></div><div class="_3x-2" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="mtm"><div id="u_0_2j" class="_6m2 _1zpr clearfix _dcs _4_w4 _6m8 _59ap _64lx _3eqz _20pq _3eqw _2rk1 _1-9r _5qqr" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="clearfix _2r3x"><div class="lfloat _ohe"><span class="_3m6-"><div class="_150c" data-ft="&#123;&quot;tn&quot;:&quot;F&quot;&#125;"><img class="_3chq" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/75357852_1439115882928564_1035028633766330368_n.jpg?_nc_cat=103&amp;_nc_ohc=gP7byC44dNoAQlaAbFI_mUekImAfIn137lXPO5i_J3SIoq2-fywahh7pA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=86e746c6168e4b98e7028ce2df9ea2f3&amp;oe=5E97D793" /><div class="_5mly _45oh" id="u_0_62"><div class="_5v-_" id="u_0_63"><div class="_1c_u _45oh" id="u_0_64"><div class="_53j5" style="height:282px;width:500px;" tabindex="0" id="u_0_65"><video height="282" width="500" preload="metadata" style="" class="_ox1 _21y0" data-video-width="500" data-video-height="282" data-original-aspect-ratio="1.7777777777778" id="u_0_66"></video><div class="_4lpe _3htz"><img class="_4lpf" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/75357852_1439115882928564_1035028633766330368_n.jpg?_nc_cat=103&amp;_nc_ohc=gP7byC44dNoAQlaAbFI_mUekImAfIn137lXPO5i_J3SIoq2-fywahh7pA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=86e746c6168e4b98e7028ce2df9ea2f3&amp;oe=5E97D793" /></div><div class="_m54 _1jto _3htz" id="u_0_67"><img class="_1445 _2sy9 img" src="https://static.xx.fbcdn.net/rsrc.php/v3/y4/r/-PAXP-deijE.gif" alt="" style="background-image: url(&#039;https\3a //scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/s526x296/75357852_1439115882928564_1035028633766330368_n.jpg?_nc_cat\3d 103\26 _nc_ohc\3d gP7byC44dNoAQlaAbFI_mUekImAfIn137lXPO5i_J3SIoq2-fywahh7pA\26 _nc_ht\3d scontent-cdg2-1.xx\26 _nc_tp\3d 1\26 oh\3d 46bf146cfd6ededd591fd2715d728e76\26 oe\3d 5EAD30B0&#039;);" id="u_0_68" /></div><div class="_4ubd _170l _27db _3htz" id="u_0_69"></div><div class="_npo hidden_elem _3htz" id="u_0_6a"><div class="_3drf"></div><div class="_3x62"><div class="_63rn"><div class="_63rm"><div class="_iij">Vous semblez rencontrer des problèmes pour lire cette vidéo. Si c’est le cas, essayez de redémarrer votre navigateur</div><div class="_iir">Fermer</div></div></div></div></div><div class="_567v _3bw _4ubd _28dy _3htz" id="u_0_6b"><div class="_567_"><div class="_2za- _2vd- uiContextualLayerParent _28dz" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;" id="u_0_6c"><div class="_1vx9"><a class="_2za_" href="/watch/?ref=external&amp;v=473117833606224"><span class="_50f7">Self-driving car</span></a></div><div class="_1vx9">Publié par <a class="_2za_ _5p5v" href="/watch/cgtnamerica/"><span class="_50f7">CGTN America</span></a></div><div class="_1vx9"><span>499 vues</span></div></div></div><div class="_5bke" id="u_0_6d"></div></div><i class="_1jto _bsl _4ubd _3htz" id="u_0_4i"><input aria-label="Lire la vid&#xe9;o" type="button" class="accessible_elem" id="u_0_6e" /></i><span class="img _55ym _55yq _55yo _167h _4ubd _1hiu hidden_elem _360f _167h _3htz" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..." id="u_0_4j"></span><div class="_3htz _4ubd _1zmi" id="u_0_6f"></div><div class="_4ivm" id="u_0_6g"></div></div><div class="_2i84"><div id="u_0_6h"></div></div></div></div></div></div><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;" class="_3ekx _29_4"></div></span></div><div class="_42ef"><span class="_3c21"></span></div></div></div></div></div></div><div></div></div></div><div><form rel="async" class="commentable_item" method="post" data-ft="&#123;&quot;tn&quot;:&quot;]&quot;&#125;" action="/ajax/ufi/modify.php" onsubmit="" id="u_0_3u"><input type="hidden" name="jazoest" value="2703" autocomplete="off" /><input type="hidden" name="lsd" value="AVpJ6Pvr" autocomplete="off" /><input type="hidden" autocomplete="off" name="ft_ent_identifier" value="473117833606224" /><input type="hidden" autocomplete="off" name="data_only_response" value="1" /><div class="_7f6e"><div class="_5vsi"></div><noscript id="u_0_3t"></noscript></div></form></div></div></div></div></div></div><div class="_4-u2 _4-u8"><div class="_427x"><div class="_4-u2 mbm _4mrt _5jmm _5pat _5v3q _7cqq _4-u8" data-ft="&#123;&quot;fbfeed_location&quot;:36&#125;" data-fte="1" data-ftr="1" data-xt="AZXC6wogKd92wd4TQ1pThQ3yMLjJDtGLrIKznR-QmUuHfrxZtaNDOidtRr5qyV_9zt7DcHJGrnEYNxShuObJNEcAZo-cv28hHu5m1cYtYsc2EEv_ntpfr3OidvVOO1kERQF1_QMqijA_0hMChb0dNE4m1zhv_TOy5ubBCyg5PJIIXIyAtbQ7TtYS7PZRqJ629u1-oouSLBAER56Y5xpM9ooN9Unxal-1iGYa4OskxhXRTNDBjYIlqQa-drszM3vrV48BZeGshxOzqHE9N9RY0EV6suAbIUTQrkEo4uBjQb5Q19VDT1WiolyHzTywNcoNfU37ua7kFjnAlKgjBRAHLHIHyDZ8kHzuLV_CIUokKG1onSlWUGtuofscalrZIl6OkE6G_MHG1sGfa7fdLLK6fuhBGwAMN37Z1jK_z4wBQm_S_2B3oaR4LfE25c-0Q_TRaCGtM-lw9lzC323gasC1QI2Qd0HB0pnrmnz53NfqOwsBdIyABR09dhfQkQd1BRcOQt6ShUfyT9Z0ULc1v3UX2VjnwUm7rOxSbvcBX_ivNEKDA2yp1jrk_R--uXAarp3vXF588owjxAj-ElBJzjqlwr-VzH5YIw7VbKOEZICseaO_3EeD9N8elM0uKURpdzMfcoy8fbzUH2aDL71mWDT1supfPc8byYHh5mStGaXnVkduM2kWtNaMK3bHK7aIdEs5MCWzJw0iOPjM1De1dRLK7TkdpFrZsmlHst7jAXghjOcDma2mymnjdkXPl9MLUx9GI9lUfp5dcYAzSFjyKX4SjJqsMLxVlSoMaA3A3tIF0X6goSy3_9_pxGJ4d3I02t3cBDasaLBOmLFkPaEC1oVlsFzqUl_GEUKgDTZKZHB2HJ3D0eWXZLQjow6Xix9_WsXTABW9ZHT4gbme82o3-0aarcUyO7Sif2RSwb_W4Q4389_l0FjBWaTYR3B4yUHbfDX1aUF08DT8zn11yXNSYTryx16p" data-xt-vimp="&#123;&quot;pixel_in_percentage&quot;:0,&quot;duration_in_ms&quot;:1,&quot;client_track_subsequent_impression&quot;:true,&quot;client_no_dedup&quot;:false,&quot;subsequent_gap_in_ms&quot;:60000,&quot;log_initial_nonviewable&quot;:false,&quot;should_batch&quot;:true,&quot;require_horizontally_onscreen&quot;:false,&quot;encrypt_data_xt&quot;:true,&quot;signal_mode_for_ss&quot;:false,&quot;vital_mode_for_ss&quot;:false,&quot;should_not_delay_impression&quot;:true,&quot;should_log_endpoint_info&quot;:true,&quot;log_viewability_events_for_infra_validation&quot;:false,&quot;log_visibility_hidden_when_browser_inactive&quot;:true,&quot;count_blue_bar_height&quot;:true,&quot;detect_occlusion&quot;:false,&quot;should_not_log_on_occlusion&quot;:false,&quot;is_rhc&quot;:false&#125;" id="u_0_x"><div class="_3ccb" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;" data-gt="&#123;&quot;type&quot;:&quot;click2canvas&quot;,&quot;fbsource&quot;:703,&quot;ref&quot;:&quot;nf_generic&quot;&#125;" id="u_0_2y"><div></div><div class="_5pcr userContentWrapper" style="" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;"><div class="_1dwg _1w_m _q7o" data-vc-ignore-dynamic="1"><div class="_4r_y" id="u_0_3e"><div class="_1wbl" id="u_0_3d"></div></div><div><div class="l_c3pyo2v0u i_c3pynyi2f clearfix"><div class="clearfix y_c3pyo2ta3"><a class="_5pb8 o_c3pynyi2g _8o _8s lfloat _ohe" aria-hidden="true" tabindex="-1" target="" data-ft="&#123;&quot;tn&quot;:&quot;\u003C&quot;&#125;" href="https://www.facebook.com/cgtnamerica/?ref=nf&amp;hc_ref=ARR353FdHeofKziVS6Y1Dv4soG3v7MEPrm9A-gH9VT6IxpYC3aqGJ7GZN-ex975jTvg"><div class="_38vo"><noscript id="u_0_9o"></noscript><div><img class="_s0 _4ooo _5xib _5sq7 _44ma _rw img" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t1.0-1/p50x50/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&amp;_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=3acb44171b892a809a8d6bba8847175c&amp;oe=5EA6F099" alt="" aria-label="CGTN America" role="img" /></div></div></a><div class="clearfix _42ef"><div class="rfloat _ohf"></div><div class="u_c3pyo2ta4"><div><div class="_6a _5u5j"><div class="_6a _6b" style="height:40px"></div><div class="_6a _5u5j _6b"><h5 class="_7tae _14f3 _14f5 _5pbw _5vra" id="u_0_3a" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fwn fcg"><span class="fwb fcg" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;"><a href="https://www.facebook.com/cgtnamerica/?hc_ref=ARQ3WOo7dZnHCCqsg317OQjRhdnWqWCz8iqg7HkiwuYCT3SkoZhQ6jiKiwBOI2T65GY&amp;fref=nf">CGTN America</a></span></span></h5><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_300653326696613;2661862420575680;;9" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a href="/cgtnamerica/videos/2525520257557521/" aria-label="Vid&#xe9;o, Trump responds to base attacks in Iraq, Dur&#xe9;e&#xa0;: 36 secondes" ajaxify="/cgtnamerica/videos/vb.300653326696613/2525520257557521/?type=3&amp;source=12" rel="theater" class="_5pcq" target=""><abbr title="08/01/2020 13:34" data-utime="1578519274" data-shorten="1" class="_5ptz timestamp livetimestamp"><span class="timestampContent">12 h</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><div data-hover="tooltip" data-tooltip-content="Ajout&#xe9;e le Mercredi 8 janvier 2020, 13:33" class="inlineBlock"><i class="_5qla img sp_NnQJe0BAlA8 sx_a4e8dc"></i></div><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div></div></div></div></div></div></div><div data-testid="post_message" class="_5pbx userContent _3576" data-ft="&#123;&quot;tn&quot;:&quot;K&quot;&#125;"><p>In an address to the nation, President Trump defends the drone strike that killed a top Iranian general. White House correspondent Nathan King reflects.<br /> <a href="https://l.facebook.com/l.php?u=https%3A%2F%2Fnewsus.cgtn.com%2Fnews%2F2020-01-09%2FWhite-House-correspondent-analysis-on-Trump-s-Iran-speech--N6dmfRLrws%2Findex.html&amp;h=AT1g-2540dxC03NqTyr9xa5Bw5bsHkq3JGJvZRV_9KIKu-fRyY6hJkJl0xbRY2JrRNBeviGcV0hbGE3rfw5bqS2rHbB0Z2m2yybvEOPwLWV91tMJgW7OdPowWCOfQDm5G8dIADhpAlELrBLFbY6tTovY7gMiZ-p6gJNxDqmYqBHyDQ" target="_blank" data-ft="&#123;&quot;tn&quot;:&quot;-U&quot;&#125;" rel="nofollow" data-lynx-mode="hover">https://newsus.cgtn.com/…/White-House-correspond…/index.html</a></p></div><div class="_3x-2" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="mtm"><div id="u_0_3c" class="_6m2 _1zpr clearfix _dcs _4_w4 _6m8 _59ap _64lx _3eqz _20pq _3eqw _2rk1 _1-9r _5qqr" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="clearfix _2r3x"><div class="lfloat _ohe"><span class="_3m6-"><div class="_150c" data-ft="&#123;&quot;tn&quot;:&quot;F&quot;&#125;"><img class="_3chq" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/74691833_2507781369471370_2345899596498075648_n.jpg?_nc_cat=110&amp;_nc_ohc=wANyKWpDfz8AQlF_zSayLBjNHXDBP-EYeslXSvQ6K3bv4rRRQEqMovY-w&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=bb025e9b83309fbf80b734881d3faf95&amp;oe=5E8EE0AF" /><div class="_5mly _45oh" id="u_0_5m"><div class="_5v-_" id="u_0_5n"><div class="_1c_u _45oh" id="u_0_5o"><div class="_53j5" style="height:282px;width:500px;" tabindex="0" id="u_0_5p"><video height="282" width="500" preload="metadata" style="" class="_ox1 _21y0" data-video-width="500" data-video-height="282" data-original-aspect-ratio="1.7777777777778" id="u_0_5q"></video><div class="_4lpe _3htz"><img class="_4lpf" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/74691833_2507781369471370_2345899596498075648_n.jpg?_nc_cat=110&amp;_nc_ohc=wANyKWpDfz8AQlF_zSayLBjNHXDBP-EYeslXSvQ6K3bv4rRRQEqMovY-w&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=bb025e9b83309fbf80b734881d3faf95&amp;oe=5E8EE0AF" /></div><div class="_m54 _1jto _3htz" id="u_0_5r"><img class="_1445 _2sy9 img" src="https://static.xx.fbcdn.net/rsrc.php/v3/y4/r/-PAXP-deijE.gif" alt="" style="background-image: url(&#039;https\3a //scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/s526x296/74691833_2507781369471370_2345899596498075648_n.jpg?_nc_cat\3d 110\26 _nc_ohc\3d wANyKWpDfz8AQlF_zSayLBjNHXDBP-EYeslXSvQ6K3bv4rRRQEqMovY-w\26 _nc_ht\3d scontent-cdg2-1.xx\26 _nc_tp\3d 1\26 oh\3d c3008c15ed2a765175084cf55db5db5f\26 oe\3d 5EA5888C&#039;);" id="u_0_5s" /></div><div class="_4ubd _170l _27db _3htz" id="u_0_5t"></div><div class="_npo hidden_elem _3htz" id="u_0_5u"><div class="_3drf"></div><div class="_3x62"><div class="_63rn"><div class="_63rm"><div class="_iij">Vous semblez rencontrer des problèmes pour lire cette vidéo. Si c’est le cas, essayez de redémarrer votre navigateur</div><div class="_iir">Fermer</div></div></div></div></div><div class="_567v _3bw _4ubd _28dy _3htz" id="u_0_5v"><div class="_567_"><div class="_2za- _2vd- uiContextualLayerParent _28dz" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;" id="u_0_5w"><div class="_1vx9"><a class="_2za_" href="/watch/?ref=external&amp;v=2525520257557521"><span class="_50f7">Trump responds to base attacks in Iraq</span></a></div><div class="_1vx9">Publié par <a class="_2za_ _5p5v" href="/watch/cgtnamerica/"><span class="_50f7">CGTN America</span></a></div><div class="_1vx9"><span>4 812 vues</span></div></div></div><div class="_5bke" id="u_0_5x"></div></div><i class="_1jto _bsl _4ubd _3htz" id="u_0_4t"><input aria-label="Lire la vid&#xe9;o" type="button" class="accessible_elem" id="u_0_5y" /></i><span class="img _55ym _55yq _55yo _167h _4ubd _1hiu hidden_elem _360f _167h _3htz" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..." id="u_0_4u"></span><div class="_3htz _4ubd _1zmi" id="u_0_5z"></div><div class="_4ivm" id="u_0_60"></div></div><div class="_2i84"><div id="u_0_61"></div></div></div></div></div></div><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;" class="_3ekx _29_4"></div></span></div><div class="_42ef"><span class="_3c21"></span></div></div></div></div></div></div><div></div></div></div><div><form rel="async" class="commentable_item" method="post" data-ft="&#123;&quot;tn&quot;:&quot;]&quot;&#125;" action="/ajax/ufi/modify.php" onsubmit="" id="u_0_9n"><input type="hidden" name="jazoest" value="2703" autocomplete="off" /><input type="hidden" name="lsd" value="AVpJ6Pvr" autocomplete="off" /><input type="hidden" autocomplete="off" name="ft_ent_identifier" value="2525520257557521" /><input type="hidden" autocomplete="off" name="data_only_response" value="1" /><div class="_7f6e"><div class="_5vsi"></div><noscript id="u_0_9m"></noscript></div></form></div></div></div></div></div></div><div class="_4-u2 _4-u8"><div class="_427x"><div class="_4-u2 mbm _4mrt _5jmm _5pat _5v3q _7cqq _4-u8" data-ft="&#123;&quot;fbfeed_location&quot;:36&#125;" data-fte="1" data-ftr="1" data-xt="AZUsxaybtQwuCnkZATilo-oITsmonvPXc_iWxECWJDw60E4Vz6QMr3Qbfnfpuhs0USPJrwkG-uJTOJ3MYCv63c4UlMaxwGuPmws9HhQMzNdVP4qaxnK02FUrBYXoEJpgZtmOv-I2Q_B3J5VmpXChFNuZgrjx8IZdFlZy-a2BtNOlmtny7Klwi6mqJuiuwO4mvgEiLXb0-_dkwl2Oy53_zbeLZ9caSrd3XcsPUfbznonmzRDR84Yb5UmhMP52okjXdu5CIyAEab2r0KeH4w9vwik5CGJQcSCLW_nFvR1X8TMbk_fqfLqi_JcsRohOhaMEN9Odl0kIyOav3tYtbOgBvbAV0-AENeLnPissynEfrLej0yuXBHJDGhhMH81jqHtr_Swt0nqRYhvAqE7RX9_lRWx6iPU1nNJ1Yt4MvJkD5tTEu0dSAKLM99ueLfGjrRsQ0Q3xYpLpuYvvp4qI_t8RnrRk72zMTMSmfyyIYxWUjTHR-iz_rokEnvcVmm2RlcszyRR79T8vX5sA9dRvarL0al8G4HSsqDGV1tn3TxvLvsgdwH3xE52kHvHpo2929r5Gcu62d0Ssj5nuhRK-RKhNGrW-vbVCkToo6l2mEIbZS4QoCS9WfzHlXH1_Bnln2z2fhTPYYXT6BuwXK7zNwFHy59eOmogb3nPyrImgoR50M6_PbH0ENQIhH4ERG8Lvvuv9zbD7UPg9Qv97T-304r2TdIFWfG9RSTDfZ9UP-X4UTSwCZbior-5uhhwN8Y4zqzqNXMx1gbSPfH6XqywQmE3h6rv5dMgSEbmXQcm_XfoNOQexp_YSmtC_00sZ124x_0F7VE3BGOfetlxLEDuaV7_kuJ2-p_9pj5Z21O5CqwWDrHYVcxXWopdm_L4vKFj8PHkAHT3kE4rSIqlZUTYSTx4zLtSUirO7EtS-v5AsZcOT-CoSkhqJ08O_ClDtfywywlc4JOSKTEbdPaBeJAS8Tcn5PHbP" data-xt-vimp="&#123;&quot;pixel_in_percentage&quot;:0,&quot;duration_in_ms&quot;:1,&quot;client_track_subsequent_impression&quot;:true,&quot;client_no_dedup&quot;:false,&quot;subsequent_gap_in_ms&quot;:60000,&quot;log_initial_nonviewable&quot;:false,&quot;should_batch&quot;:true,&quot;require_horizontally_onscreen&quot;:false,&quot;encrypt_data_xt&quot;:true,&quot;signal_mode_for_ss&quot;:false,&quot;vital_mode_for_ss&quot;:false,&quot;should_not_delay_impression&quot;:true,&quot;should_log_endpoint_info&quot;:true,&quot;log_viewability_events_for_infra_validation&quot;:false,&quot;log_visibility_hidden_when_browser_inactive&quot;:true,&quot;count_blue_bar_height&quot;:true,&quot;detect_occlusion&quot;:false,&quot;should_not_log_on_occlusion&quot;:false,&quot;is_rhc&quot;:false&#125;" id="u_0_y"><div class="_3ccb" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;" data-gt="&#123;&quot;type&quot;:&quot;click2canvas&quot;,&quot;fbsource&quot;:703,&quot;ref&quot;:&quot;nf_generic&quot;&#125;" id="u_0_8o"><div></div><div class="_5pcr userContentWrapper" style="" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;"><div class="_1dwg _1w_m _q7o" data-vc-ignore-dynamic="1"><div class="_4r_y" id="u_0_99"><div class="_1wbl" id="u_0_98"></div></div><div><div class="l_c3pyo2v0u i_c3pynyi2f clearfix"><div class="clearfix y_c3pyo2ta3"><a class="_5pb8 o_c3pynyi2g _8o _8s lfloat _ohe" aria-hidden="true" tabindex="-1" target="" data-ft="&#123;&quot;tn&quot;:&quot;\u003C&quot;&#125;" href="https://www.facebook.com/cgtnamerica/?ref=nf&amp;hc_ref=ART5l3tKx-3EWvaTBO6PwK8Zg25rVVThcV9EKj4FAFAxad5Shk3DaCMiQl_4HCVMvjc"><div class="_38vo"><noscript id="u_0_bw"></noscript><div><img class="_s0 _4ooo _5xib _5sq7 _44ma _rw img" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t1.0-1/p50x50/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&amp;_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=3acb44171b892a809a8d6bba8847175c&amp;oe=5EA6F099" alt="" aria-label="CGTN America" role="img" /></div></div></a><div class="clearfix _42ef"><div class="rfloat _ohf"></div><div class="u_c3pyo2ta4"><div><div class="_6a _5u5j"><div class="_6a _6b" style="height:40px"></div><div class="_6a _5u5j _6b"><h5 class="_7tae _14f3 _14f5 _5pbw _5vra" id="u_0_96" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fwn fcg"><span class="fwb fcg" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;"><a href="https://www.facebook.com/cgtnamerica/?hc_ref=ARQGbqPDCuVQKhpmg4zi8NmKl2b5mr7fW2-Ff2S3h5l5mPoJNWdx3c0z9T9dbD4bu2g&amp;fref=nf">CGTN America</a></span></span></h5><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_300653326696613;2661853320576590;;9" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a href="/cgtnamerica/videos/476132016429785/" aria-label="Vid&#xe9;o, Bikes in your backpack, Dur&#xe9;e&#xa0;: 1 minute, 7 secondes" ajaxify="/cgtnamerica/videos/vb.300653326696613/476132016429785/?type=3&amp;source=12" rel="theater" class="_5pcq" target=""><abbr title="08/01/2020 13:28" data-utime="1578518907" data-shorten="1" class="_5ptz timestamp livetimestamp"><span class="timestampContent">12 h</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><div data-hover="tooltip" data-tooltip-content="Ajout&#xe9;e le Mercredi 8 janvier 2020, 13:27" class="inlineBlock"><i class="_5qla img sp_NnQJe0BAlA8 sx_a4e8dc"></i></div><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div></div></div></div></div></div></div><div data-testid="post_message" class="_5pbx userContent _3576" data-ft="&#123;&quot;tn&quot;:&quot;K&quot;&#125;"><p>Bikes in the future will be… smaller? Watch CGTN correspondent Mark Niu try out the world’s smallest, lightest, electric bike, that can fit in a backpack.<br /> <a href="https://l.facebook.com/l.php?u=https%3A%2F%2Fnewsus.cgtn.com%2Fnews%2F2020-01-09%2FThe-world-s-smallest-electric-bike-N6gVBUKVfa%2Findex.html&amp;h=AT2_Km3eVd_-or6ZqgVYI2qw6q3FrihmHJt3B7ysBI_YZ2c5QvKbr6sL8lNp0JuZvl_byC6nvoISRL83kq8eixfYnDOS1qL8zTRA-_SgnDkK1a-Tp2au8DAXRUdEW7vVayvYryomNUhXrzhYkBdi5sYNvNSiMm6lK9psJop1E9uaGA" target="_blank" data-ft="&#123;&quot;tn&quot;:&quot;-U&quot;&#125;" rel="nofollow" data-lynx-mode="hover">https://newsus.cgtn.com/…/The-world-s-smallest-e…/index.html</a></p></div><div class="_3x-2" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="mtm"><div id="u_0_97" class="_6m2 _1zpr clearfix _dcs _4_w4 _6m8 _59ap _64lx _3eqz _20pq _3eqw _2rk1 _1-9r _5qqr" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="clearfix _2r3x"><div class="lfloat _ohe"><span class="_3m6-"><div class="_150c" data-ft="&#123;&quot;tn&quot;:&quot;F&quot;&#125;"><img class="_3chq" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/75366056_626419458129929_8669193068076859392_n.jpg?_nc_cat=104&amp;_nc_ohc=ayMKsoXChEsAQm82rQpk73oixNris-t8BPfG-kmN0kemUAQbs9TBh6E-g&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=409b23ef68faf701452178df340ff060&amp;oe=5E9187D8" /><div class="_5mly _45oh" id="u_0_bg"><div class="_5v-_" id="u_0_bh"><div class="_1c_u _45oh" id="u_0_bi"><div class="_53j5" style="height:282px;width:500px;" tabindex="0" id="u_0_bj"><video height="282" width="500" preload="metadata" style="" class="_ox1 _21y0" data-video-width="500" data-video-height="282" data-original-aspect-ratio="1.7777777777778" id="u_0_bk"></video><div class="_4lpe _3htz"><img class="_4lpf" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/75366056_626419458129929_8669193068076859392_n.jpg?_nc_cat=104&amp;_nc_ohc=ayMKsoXChEsAQm82rQpk73oixNris-t8BPfG-kmN0kemUAQbs9TBh6E-g&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=409b23ef68faf701452178df340ff060&amp;oe=5E9187D8" /></div><div class="_m54 _1jto _3htz" id="u_0_bl"><img class="_1445 _2sy9 img" src="https://static.xx.fbcdn.net/rsrc.php/v3/y4/r/-PAXP-deijE.gif" alt="" style="background-image: url(&#039;https\3a //scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/s526x296/75366056_626419458129929_8669193068076859392_n.jpg?_nc_cat\3d 104\26 _nc_ohc\3d ayMKsoXChEsAQm82rQpk73oixNris-t8BPfG-kmN0kemUAQbs9TBh6E-g\26 _nc_ht\3d scontent-cdg2-1.xx\26 _nc_tp\3d 1\26 oh\3d 99cd4977a63a5b19f6655bf4eabe4a71\26 oe\3d 5E93DA0C&#039;);" id="u_0_bm" /></div><div class="_4ubd _170l _27db _3htz" id="u_0_bn"></div><div class="_npo hidden_elem _3htz" id="u_0_bo"><div class="_3drf"></div><div class="_3x62"><div class="_63rn"><div class="_63rm"><div class="_iij">Vous semblez rencontrer des problèmes pour lire cette vidéo. Si c’est le cas, essayez de redémarrer votre navigateur</div><div class="_iir">Fermer</div></div></div></div></div><div class="_567v _3bw _4ubd _28dy _3htz" id="u_0_bp"><div class="_567_"><div class="_2za- _2vd- uiContextualLayerParent _28dz" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;" id="u_0_bq"><div class="_1vx9"><a class="_2za_" href="/watch/?ref=external&amp;v=476132016429785"><span class="_50f7">Bikes in your backpack</span></a></div><div class="_1vx9">Publié par <a class="_2za_ _5p5v" href="/watch/cgtnamerica/"><span class="_50f7">CGTN America</span></a></div><div class="_1vx9"><span>779 vues</span></div></div></div><div class="_5bke" id="u_0_br"></div></div><i class="_1jto _bsl _4ubd _3htz" id="u_0_ac"><input aria-label="Lire la vid&#xe9;o" type="button" class="accessible_elem" id="u_0_bs" /></i><span class="img _55ym _55yq _55yo _167h _4ubd _1hiu hidden_elem _360f _167h _3htz" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..." id="u_0_ad"></span><div class="_3htz _4ubd _1zmi" id="u_0_bt"></div><div class="_4ivm" id="u_0_bu"></div></div><div class="_2i84"><div id="u_0_bv"></div></div></div></div></div></div><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;" class="_3ekx _29_4"></div></span></div><div class="_42ef"><span class="_3c21"></span></div></div></div></div></div></div><div></div></div></div><div><form rel="async" class="commentable_item" method="post" data-ft="&#123;&quot;tn&quot;:&quot;]&quot;&#125;" action="/ajax/ufi/modify.php" onsubmit="" id="u_0_9t"><input type="hidden" name="jazoest" value="2703" autocomplete="off" /><input type="hidden" name="lsd" value="AVpJ6Pvr" autocomplete="off" /><input type="hidden" autocomplete="off" name="ft_ent_identifier" value="476132016429785" /><input type="hidden" autocomplete="off" name="data_only_response" value="1" /><div class="_7f6e"><div class="_5vsi"></div><noscript id="u_0_9s"></noscript></div></form></div></div></div></div></div></div><div class="_4-u2 _4-u8"><div class="_427x"><div class="_4-u2 mbm _4mrt _5jmm _5pat _5v3q _7cqq _4-u8" data-ft="&#123;&quot;fbfeed_location&quot;:36&#125;" data-fte="1" data-ftr="1" data-xt="AZWOs11lEcsEoRrzPVvWhKEl0bnyP2hE0rK_zXCbO8KWmvpOGcMFe3Ey-tFODHn25Wizdo8Fud6nXF_wT0Dob5bliMmSA4NPlbnp_4SMkJtRYKjUWE_F6EucnCMxZY0IE2rMTPu0jfLTtHRQ-xmAiCV98_b_dkCYFqV84o7xkB3P7ciL-YnYTGc5c71-eQlwkcEChIRqxWbwRGcRdWpXlDFLKQvbCbhTuxYyr37ARRe_hkzVMGNp6_LxqJRJJIIMASzbLLXpmMUlha3qOGy0hFU_g82vyWMKEoYbgZj3tuhWBUud6bH39V1TVQ1O5_NwHAXihwWHkU9tXqyOQOAUQoDDeYc6ae_1vJJ_f952eewqLO-5PlkoXN6_T9ofK-jCb8D2SesdYlYWdqOFCVDzclHaqUHdCn2r1EW4CLfhxuKHhJkH1NSINw1FxHj94JRm963k1il1FFV4eLHkjUntX3dsFbxFcADW7ptU-HFtrI00XI4SGLQbCPQIJ_oRhfy7Cxnj10udwrFclznGWqfgwXomSPTYcLImj1uMXbbRTo72FVJPK6UdwU56Q1uHimsLwm5pKRcov72kwmwd-aatEGbh9oLH79b7vDhRgDKm2krJzHQryTzue46MdNTuWMgQifkkz6Qfv76F5LvM7cpJwLJUMTRG-YPeG5zoKvgYcfE0h_NzynDGLh85FzmEI2Dy3XEDGtJHa9jYQuVrXqfuwc8hqZwHs5LHL0ow7uyhi2aD9xUVgsTYlngZz0hXMvEoeD_oj6BeIHJNmVFOP2x58KvyvSFDLuQiHuqsbb2az1cHgppW7Ixq9hY3ZL4NXgQ8SvBrVYPcAUeiQKw_GZ8bYF2rime3WfRb7EiBEXtio7xxhEmatW0x95AKEFxxPImNOdsm2UxigwE7z5RVvw4Qg-3UlxbXZLSVCkfemOVi4XRZnSDWd8vNmbOOZ2TFO-U7VhaCJftAXqVISC5pov_uwj9c7jscCrMABxns1vFFCeo6dR5ebRKK9der0WjN_20BDxah7HYGYz8P_1NdYU2WmxXkt7k3yIQHfoXhQ6xKGLJQ6U1kI-PcJWlr2TbsumkKBgG5ktytJMDIA7LIZIjXk7kVMUj5El71XYhj6IrvOal2n6mQdrL64bjGJVxGx--Mp6l1lfHZT6hX94AmbmDCof9l5g7XoNIyd8jt40xwVx_SGNjm5O-iDwia6CiJpW97Zt0X1t29eUkf72IDS_t31QP8nXWX5YgAqHeW9LFbMXIbu7f-ajffnlszlBhan4_RS_GWTRjihKbo7mj7I7CIZGYYULjcu7rfY_Uo09Rb4k2ZOwxbBxqI5QzWwrpjTPl_oKSfCHriWJH6SVS78A5Nzfx8DGiAux0MSeL5U41cvRGyP5YzOST6b3Ey56C-TavaNTjGSUt6jTXP3LhFQOejBsUBDKpjA9y-3tVm8bbXiLfVSe4XxWR5u1nvAy1Wtp1_ZnfHUkQh32Ys0t-ZInJeYY4f7yt_jq0zhZcvAft329PeEHrqlnyccMn8ftZ_WzEuhyXGLUBvgqE7zthX9Vg3wMluM18mUCSsnt3IuCF3_IS0JMD3sNSx3-kNu1tyNLZ1WuomJFBl4D0dJSxSIZdA8-N6VgsScBbxb4CO5Q0layD-KRNuFKQORngLTmBiQvBipKZKLU7Lz7XJzhq7V0Nxu702KARY4wRHJN8whEWsSmzSOdVxCpwvRwaLC8KhcsdjCBT6Znw6HupbghOvFqszOqLEAgWJmDGdPXkIEjvYTJ4oVzN0FD-4Zv4IimLZKvbyB7qO_2hvdRwaX18cW0-VgF6sJjXGFnJ0z_cgDgzhC2H8hRKlus9wr_ctH6V83f8paEY" data-xt-vimp="&#123;&quot;pixel_in_percentage&quot;:0,&quot;duration_in_ms&quot;:1,&quot;client_track_subsequent_impression&quot;:true,&quot;client_no_dedup&quot;:false,&quot;subsequent_gap_in_ms&quot;:60000,&quot;log_initial_nonviewable&quot;:false,&quot;should_batch&quot;:true,&quot;require_horizontally_onscreen&quot;:false,&quot;encrypt_data_xt&quot;:true,&quot;signal_mode_for_ss&quot;:false,&quot;vital_mode_for_ss&quot;:false,&quot;should_not_delay_impression&quot;:true,&quot;should_log_endpoint_info&quot;:true,&quot;log_viewability_events_for_infra_validation&quot;:false,&quot;log_visibility_hidden_when_browser_inactive&quot;:true,&quot;count_blue_bar_height&quot;:true,&quot;detect_occlusion&quot;:false,&quot;should_not_log_on_occlusion&quot;:false,&quot;is_rhc&quot;:false&#125;" id="u_0_z"><div class="_3ccb" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;" data-gt="&#123;&quot;type&quot;:&quot;click2canvas&quot;,&quot;fbsource&quot;:703,&quot;ref&quot;:&quot;nf_generic&quot;&#125;" id="u_0_1i"><div></div><div class="_5pcr userContentWrapper" style="" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;"><div class="_1dwg _1w_m _q7o" data-vc-ignore-dynamic="1"><div class="_4r_y" id="u_0_1l"><div class="_1wbl" id="u_0_1k"></div></div><div><div class="l_c3pyo2v0u i_c3pynyi2f clearfix"><div class="clearfix y_c3pyo2ta3"><a class="_5pb8 o_c3pynyi2g _8o _8s lfloat _ohe" aria-hidden="true" tabindex="-1" target="" data-ft="&#123;&quot;tn&quot;:&quot;\u003C&quot;&#125;" href="https://www.facebook.com/cgtnamerica/?ref=nf&amp;hc_ref=ARSkT8CkxmXw1Rtr264PNZ9rXRIcktQ-Eldn4b-NAEjbptzUYLMQIDJrFVSjcuRGe3Y"><div class="_38vo"><noscript id="u_0_4s"></noscript><div><img class="_s0 _4ooo _5xib _5sq7 _44ma _rw img" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t1.0-1/p50x50/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&amp;_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=3acb44171b892a809a8d6bba8847175c&amp;oe=5EA6F099" alt="" aria-label="CGTN America" role="img" /></div></div></a><div class="clearfix _42ef"><div class="rfloat _ohf"></div><div class="u_c3pyo2ta4"><div><div class="_6a _5u5j"><div class="_6a _6b" style="height:40px"></div><div class="_6a _5u5j _6b"><h5 class="_7tae _14f3 _14f5 _5pbw _5vra" id="u_0_1j" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fwn fcg"><span class="fcg"><span class="fwb"><a class="profileLink" href="https://www.facebook.com/cgtnamerica/?hc_ref=ARQ5O8HTPeQMRbDa8uhLA6UJJ9MfFRyeno5y3FOVFJegVQPAMwMDEBLuqg1TdwSF4bM&amp;ref=nf_target" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;">CGTN America</a></span> a partagé une <a href="/ChinaGlobalTVNetwork/posts/3876078895766235" data-ft="&#123;&quot;tn&quot;:&quot;-U&quot;&#125;">publication</a>.</span></span></h5><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_300653326696613;2661846337243955;;9" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a class="_5pcq" href="/cgtnamerica/posts/2661846337243955" target=""><abbr title="08/01/2020 13:23" data-utime="1578518615" data-shorten="1" class="_5ptz timestamp livetimestamp"><span class="timestampContent">12 h</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div></div></div></div></div></div></div><div class="userContent"></div><div class="_3x-2" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"></div><div><div class="_5r69 _sds _34q1"><div class="mts"><div class="mtm _4fzb"><div class="clearfix _2pin"><div class="_5pb8 lfloat _ohe"><a ajaxify="/stories/view/async/?card_id=3874289495945175&amp;story_id=1588989024520841&amp;auto_open_viewersheet=0&amp;story_action_source=post_header_actor_photo" href="#" rel="async-post" aria-label="Lire les stories non vues" role="button" id="u_0_4q"><div class="_38vo"><noscript id="u_0_4r"></noscript><div><img class="_s0 _4ooo _6y97 _6_ut _5xib _44ma img" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t31.0-1/cp0/p32x32/15774834_1489560107751471_6217657570454684800_o.png?_nc_cat=1&amp;_nc_ohc=QUBuxOT_1McAQlBxMsnOqk5xc-3X10S8MCErwfxsz3BWY-YqvbgaweYiw&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=1cc5e1b04f95c9b505b3d9a6573c36bd&amp;oe=5EB3969E" alt="" aria-label="CGTN" role="img" style="width:28px;height:28px" /></div></div></a></div><div class="_2pis _42ef"><span class="_1nb_ fwn fcg" id="u_0_1w" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fwb" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;"><a href="https://www.facebook.com/ChinaGlobalTVNetwork/?hc_ref=ARRVHkqVAlBmCaiHeTcmWTwKyOrAQBZOvRfXDwWElyoyVn4E5avDsYZE006tXPIJrFs&amp;fref=nf">CGTN</a></span></span><div class="_5pcp"><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_3876078895766235:9:0" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a class="_5pcq" href="/ChinaGlobalTVNetwork/posts/3876078895766235" target=""><abbr title="08/01/2020 13:17" data-utime="1578518225" data-shorten="1" class="_5ptz timestamp livetimestamp"><span class="timestampContent">12 h</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div></div></div><div></div><div data-testid="post_message" class="mtm _5pco" data-ft="&#123;&quot;tn&quot;:&quot;K&quot;&#125;"><p>Numerous news organizations and posts on social media report two rockets fired and explosions in Baghdad&#039;s Green Zone. </p><p> This is a breaking story, watch for updates. </p><p> <a href="https://l.facebook.com/l.php?u=https%3A%2F%2Fnewsus.cgtn.com%2Fnews%2F2020-01-09%2FReports-of-rocket-fire-explosions-in-Baghdad-s-Green-Zone-N6jXm1Vnxu%2Findex.html&amp;h=AT2R1DZ6DMU_sV_V4P78htu7dtMe3-aqcmugBJf4s2i7JoYKfFk4mGyuRVtqd4EPbh0ZbRKrRb4AXK6GslNNo62GQCT1MKzNYWIvVd7tqoBFSGA7PYlIhqXnqq1X5NNtT1LXsnY8AAhGxVKce2B7_seHYsPR4yFoXaSt792Nix8bGl8" target="_blank" data-ft="&#123;&quot;tn&quot;:&quot;-U&quot;&#125;" rel="nofollow" data-lynx-mode="hover">https://newsus.cgtn.com/…/Reports-of-rocket-fire…/index.html</a></p></div></div><div class="_3b6i _5zb3"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="mtm"><div id="u_0_1n" class="_6m2 _1zpr clearfix _dcs _4_w4 _59ap _2bf7 _64lx _3eqz _20pq _3eqw _2rk1 _1-9r _5qqr" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="clearfix _2r3x"><div class="lfloat _ohe"><span class="_3m6-"><div class="_6ks"><a href="https://l.facebook.com/l.php?u=https%3A%2F%2Fnewsus.cgtn.com%2Fnews%2F2020-01-09%2FReports-of-rocket-fire-explosions-in-Baghdad-s-Green-Zone-N6jXm1Vnxu%2Findex.html&amp;h=AT3Q_c4jZbCD8nwWFsDBYZwEPgngaxDayy_sJqopQunQO7GkG2SliRIwdH27YGl1ztWCB7iza2GxkzOftM6Yre8EyWx0fA996P4MSCSky_DRpP_5wUvaWglVUEc_hsLQhlZ3_GZQDytuFbl1ObNZsyuzzzr8YUufj7o" aria-describedby="u_0_25" aria-label="Reports of rocket fire, explosions in Baghdad&#039;s Green Zone" tabindex="-1" target="_blank" rel="nofollow" data-lynx-mode="hover"><div class="accessible_elem inlineBlock" id="u_0_25">Numerous news organizations and posts on social media reports rocket fire and explosions in Baghdad&#039;s Green Zone.</div><div class="_6l- __c_"><div class="uiScaledImageContainer _6m5 fbStoryAttachmentImage" style="width:474px;height:247.95378151261px;"><img class="scaledImageFitWidth img" src="https://external-cdg2-1.xx.fbcdn.net/safe_image.php?d=AQDXuo4Mjg_ScPX4&amp;w=476&amp;h=249&amp;url=https%3A%2F%2Fnews.cgtn.com%2Fresource%2Fdefault%2Fimg%2Fbreaking.png&amp;cfs=1&amp;upscale=1&amp;fallback=news_d_placeholder_publisher&amp;_nc_hash=AQCtV4-lDBp_GKJU" data-src="https://external-cdg2-1.xx.fbcdn.net/safe_image.php?d=AQDXuo4Mjg_ScPX4&amp;w=476&amp;h=249&amp;url=https%3A%2F%2Fnews.cgtn.com%2Fresource%2Fdefault%2Fimg%2Fbreaking.png&amp;cfs=1&amp;upscale=1&amp;fallback=news_d_placeholder_publisher&amp;_nc_hash=AQCtV4-lDBp_GKJU" style="top:0px;" alt="" width="474" height="248" aria-label="L&#x2019;image contient peut-&#xea;tre&#xa0;: texte qui dit &#x2019;CGTN BREAKING NEWS&#x2019;" /></div></div></a></div><div class="_3ekx _29_4"><div class="_6m3 _--6"><div class="_59tj _2iau"><div><div class="_6lz _6mb _1t62 ellipsis">newsus.cgtn.com</div><div class=""></div></div></div><div class="_3n1k"><div class="mbs _6m6 _2cnj _5s6c"><a href="https://l.facebook.com/l.php?u=https%3A%2F%2Fnewsus.cgtn.com%2Fnews%2F2020-01-09%2FReports-of-rocket-fire-explosions-in-Baghdad-s-Green-Zone-N6jXm1Vnxu%2Findex.html&amp;h=AT04LXdhnRSVT4LfDwywqMFNjCIPHnB0UtKJUvmVcwceBhmavWehrPE9aHJ_2e7x8Bb0IznB0I6tA_pxmqXC5tgSALF3g6vLpMVc46xK5ctVNDnL-bWFWKmM4iiZTD9F5osRKNaj53X8S-04I7ULb6F30NWGA8ZcXhI" rel="nofollow" target="_blank" data-lynx-mode="hover">Reports of rocket fire, explosions in Baghdad&#039;s Green Zone</a></div><div class="_6m7 _3bt9">Numerous news organizations and posts on social media reports rocket fire and explosions in Baghdad&#039;s Green Zone.</div></div></div><a href="https://l.facebook.com/l.php?u=https%3A%2F%2Fnewsus.cgtn.com%2Fnews%2F2020-01-09%2FReports-of-rocket-fire-explosions-in-Baghdad-s-Green-Zone-N6jXm1Vnxu%2Findex.html&amp;h=AT3NeWL7KvtzJoK-e3AK09aL0oq0cxjiBzlxTbeN6ETU5EkxJlJSUm3SHwdHGY_6egkA3lhISLivLIOotLEfhHAKxGsZ37f9vRfzAgWWInjDIt4gadT1h3gzZm0yud2e6rdGXbQbdkGUxRBKANKN-_p2yYX7Bk74y2BRm3iyZBmHjQ" aria-label="Reports of rocket fire, explosions in Baghdad&#039;s Green Zone" aria-describedby="u_0_1p" rel="noopener nofollow" tabindex="-1" target="_blank" class="_52c6" data-lynx-mode="hover"><div class="accessible_elem" id="u_0_1p">Numerous news organizations and posts on social media reports rocket fire and explosions in Baghdad&#039;s Green Zone.</div></a></div></span></div><div class="_42ef"><span class="_3c21"></span></div></div></div></div></div></div></div></div></div></div><div></div></div></div><div><form rel="async" class="commentable_item" method="post" data-ft="&#123;&quot;tn&quot;:&quot;]&quot;&#125;" action="/ajax/ufi/modify.php" onsubmit="" id="u_0_1r"><input type="hidden" name="jazoest" value="2703" autocomplete="off" /><input type="hidden" name="lsd" value="AVpJ6Pvr" autocomplete="off" /><input type="hidden" autocomplete="off" name="ft_ent_identifier" value="2661846337243955" /><input type="hidden" autocomplete="off" name="data_only_response" value="1" /><div class="_7f6e"><div class="_5vsi"></div><noscript id="u_0_1q"></noscript></div></form></div></div></div></div></div></div><div class="_4-u2 _4-u8"><div class="_427x"><div class="_4-u2 mbm _4mrt _5jmm _5pat _5v3q _7cqq _4-u8" data-ft="&#123;&quot;fbfeed_location&quot;:36&#125;" data-fte="1" data-ftr="1" data-xt="AZXKPWiX3iWLdrK-I6K-2bdxEsWZ4VXOS7_5QoMhql-QanA9mc5okm0opwaiyFOnrJrXA71saczlDZwQPVwKHIBGtltQGYzlSxh57HUVNRm0IalK5lYxyT3z2ZpHTXnSTBtRW5v1GCrzSgMB5kchLt9c9pdnnGYDFRmnnISzmKViHuj1kD9DlRn9MrPLJXNoXNVHRHJyqhaC6uqMMceTJ92gePUL2ovf8QclCywn3KyLP_1KzXiP1d54dF6CGJg3JFn7lHuaQLlxTZ38nFMWgC9CGu6aKUvE2A_yvEn6gChS3Bt7FtQyTrSKgsHpPLfey96OFOuKTvYtfvTPRdOQAECR4Yhp5snmEsK1dXxPU6GbWzzw5NV3r3FuK7RnWxK3YL4ocdwp7GfcEeAMPGa2bH-RohZM_kDTXLiPzyLdEmX5F1jFY5weTfIqmKOgPmfWm0DUgl8VH4_jdfWmG3D0J7DnhoOtHPLZFfnRL5QBHjSfDwsJO2Z4ZA0TwmoYbR3tuzOfuczywQD2mnqVKnmJYNUIn01UtEm88SIrE8FXHpFSGZUCSQ59res3baNTxPAx3dBLdWooiZPTFxwPZ8F_Ukp6xbu1cEMiKvbMkwSONOHJsE1OTvc5wMf84Vw4rH2xbB46xN-isrxz5Q29tV4WDBoNGoodxrzH4h4KXjPfAjBDE8jYcdyCJCUEiHORoHqqKfXoI9YZktCOV604HRUZWsEttiGfC_0-euesgCd3yXg0xAJ0sq0JoD_H16dLc1KmEoE3diprlw3kCVtDwW3F8MmlOY9LeGZfggelUF33PuReyx5bdaFLLehiSurnqkq8I37oBxYD1WpCb0TzASmJhu9fT5JA69izVAJdfSooZ0j74rikSQsEswP3hLrLb9rYdcjHCB7MH6puOLIuWCSgeE6eX3qpICVPQaf8dG-Z8yka5wj8m3CXn200KtJG3_UtGtOdvZg-095_8OBkKe807IOo" data-xt-vimp="&#123;&quot;pixel_in_percentage&quot;:0,&quot;duration_in_ms&quot;:1,&quot;client_track_subsequent_impression&quot;:true,&quot;client_no_dedup&quot;:false,&quot;subsequent_gap_in_ms&quot;:60000,&quot;log_initial_nonviewable&quot;:false,&quot;should_batch&quot;:true,&quot;require_horizontally_onscreen&quot;:false,&quot;encrypt_data_xt&quot;:true,&quot;signal_mode_for_ss&quot;:false,&quot;vital_mode_for_ss&quot;:false,&quot;should_not_delay_impression&quot;:true,&quot;should_log_endpoint_info&quot;:true,&quot;log_viewability_events_for_infra_validation&quot;:false,&quot;log_visibility_hidden_when_browser_inactive&quot;:true,&quot;count_blue_bar_height&quot;:true,&quot;detect_occlusion&quot;:false,&quot;should_not_log_on_occlusion&quot;:false,&quot;is_rhc&quot;:false&#125;" id="u_0_10"><div class="_3ccb" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;" data-gt="&#123;&quot;type&quot;:&quot;click2canvas&quot;,&quot;fbsource&quot;:703,&quot;ref&quot;:&quot;nf_generic&quot;&#125;" id="u_0_2q"><div></div><div class="_5pcr userContentWrapper" style="" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;"><div class="_1dwg _1w_m _q7o" data-vc-ignore-dynamic="1"><div class="_4r_y" id="u_0_3n"><div class="_1wbl" id="u_0_3m"></div></div><div><div class="l_c3pyo2v0u i_c3pynyi2f clearfix"><div class="clearfix y_c3pyo2ta3"><a class="_5pb8 o_c3pynyi2g _8o _8s lfloat _ohe" aria-hidden="true" tabindex="-1" target="" data-ft="&#123;&quot;tn&quot;:&quot;\u003C&quot;&#125;" href="https://www.facebook.com/cgtnamerica/?ref=nf&amp;hc_ref=ART8JAi7BraaIODXagokd7FIvjpssBXNEoBlw7mHpwKLEy7ydJXjZdRWCfZXuz2uOk4"><div class="_38vo"><noscript id="u_0_9r"></noscript><div><img class="_s0 _4ooo _5xib _5sq7 _44ma _rw img" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t1.0-1/p50x50/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&amp;_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=3acb44171b892a809a8d6bba8847175c&amp;oe=5EA6F099" alt="" aria-label="CGTN America" role="img" /></div></div></a><div class="clearfix _42ef"><div class="rfloat _ohf"></div><div class="u_c3pyo2ta4"><div><div class="_6a _5u5j"><div class="_6a _6b" style="height:40px"></div><div class="_6a _5u5j _6b"><h5 class="_7tae _14f3 _14f5 _5pbw _5vra" id="u_0_36" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fwn fcg"><span class="fwb fcg" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;"><a href="https://www.facebook.com/cgtnamerica/?hc_ref=ARQDiLoooT3mySPXIhKhWiBe8CiT58gU_2-UYVamhU8mC9pxE5fAJ0kPWmnLibcuRtA&amp;fref=nf">CGTN America</a></span></span></h5><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_300653326696613;2661835413911714;;9" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a href="/cgtnamerica/videos/603020973807861/" aria-label="Vid&#xe9;o, Trump says Iran is standing down, Dur&#xe9;e&#xa0;: 25 secondes" ajaxify="/cgtnamerica/videos/vb.300653326696613/603020973807861/?type=3&amp;source=12" rel="theater" class="_5pcq" target=""><abbr title="08/01/2020 13:15" data-utime="1578518156" data-shorten="1" class="_5ptz timestamp livetimestamp"><span class="timestampContent">12 h</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><div data-hover="tooltip" data-tooltip-content="Ajout&#xe9;e le Mercredi 8 janvier 2020, 13:15" class="inlineBlock"><i class="_5qla img sp_NnQJe0BAlA8 sx_a4e8dc"></i></div><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div></div></div></div></div></div></div><div data-testid="post_message" class="_5pbx userContent _3576" data-ft="&#123;&quot;tn&quot;:&quot;K&quot;&#125;"><p>In his address to the nation, President Trump says “Iran is appearing to stand down.”White House corresponden Nathan King reflects on this speech and what it means.<br /> <a href="https://l.facebook.com/l.php?u=https%3A%2F%2Fnewsus.cgtn.com%2Fnews%2F2020-01-09%2FWhite-House-correspondent-analysis-on-Trump-s-Iran-speech--N6dmfRLrws%2Findex.html&amp;h=AT31j25MjtKeS6_beCl9sj-D4MicvVXWZUD8exo83kEXSst8JLKOBPiKS2YZzQZoslDZgNQE4JrS0IVCVA_lcafgmJgjfxDG7QL1xPrN8eOS3l20_NBXe8Vc1dqIFRpvkN6MDS4mUuioRQ2I4dOdjY1c54Xel4vVWuJfqfSUwcK_Ww" target="_blank" data-ft="&#123;&quot;tn&quot;:&quot;-U&quot;&#125;" rel="nofollow" data-lynx-mode="hover">https://newsus.cgtn.com/…/White-House-correspond…/index.html</a></p></div><div class="_3x-2" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="mtm"><div id="u_0_3l" class="_6m2 _1zpr clearfix _dcs _4_w4 _6m8 _59ap _64lx _3eqz _20pq _3eqw _2rk1 _1-9r _5qqr" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="clearfix _2r3x"><div class="lfloat _ohe"><span class="_3m6-"><div class="_150c" data-ft="&#123;&quot;tn&quot;:&quot;F&quot;&#125;"><img class="_3chq" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/75430474_2381465322165767_506102337522106368_n.jpg?_nc_cat=101&amp;_nc_ohc=UdrID1qb4lwAQn2PyZp9crycx7X72v1qxIAURzFPGDPkcVeQ2xEJmwxyA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=26655fdfe52ffa420182a77bd027f0a0&amp;oe=5E909B00" /><div class="_5mly _45oh" id="u_0_6j"><div class="_5v-_" id="u_0_6k"><div class="_1c_u _45oh" id="u_0_6l"><div class="_53j5" style="height:282px;width:500px;" tabindex="0" id="u_0_6m"><video height="282" width="500" preload="metadata" style="" class="_ox1 _21y0" data-video-width="500" data-video-height="282" data-original-aspect-ratio="1.7777777777778" id="u_0_6n"></video><div class="_4lpe _3htz"><img class="_4lpf" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/75430474_2381465322165767_506102337522106368_n.jpg?_nc_cat=101&amp;_nc_ohc=UdrID1qb4lwAQn2PyZp9crycx7X72v1qxIAURzFPGDPkcVeQ2xEJmwxyA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=26655fdfe52ffa420182a77bd027f0a0&amp;oe=5E909B00" /></div><div class="_m54 _1jto _3htz" id="u_0_6o"><img class="_1445 _2sy9 img" src="https://static.xx.fbcdn.net/rsrc.php/v3/y4/r/-PAXP-deijE.gif" alt="" style="background-image: url(&#039;https\3a //scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/s526x296/75430474_2381465322165767_506102337522106368_n.jpg?_nc_cat\3d 101\26 _nc_ohc\3d UdrID1qb4lwAQn2PyZp9crycx7X72v1qxIAURzFPGDPkcVeQ2xEJmwxyA\26 _nc_ht\3d scontent-cdg2-1.xx\26 _nc_tp\3d 1\26 oh\3d 3b4ad7a9d913cb2b24d174508d9e32ed\26 oe\3d 5E9EDCD4&#039;);" id="u_0_6p" /></div><div class="_4ubd _170l _27db _3htz" id="u_0_6q"></div><div class="_npo hidden_elem _3htz" id="u_0_6r"><div class="_3drf"></div><div class="_3x62"><div class="_63rn"><div class="_63rm"><div class="_iij">Vous semblez rencontrer des problèmes pour lire cette vidéo. Si c’est le cas, essayez de redémarrer votre navigateur</div><div class="_iir">Fermer</div></div></div></div></div><div class="_567v _3bw _4ubd _28dy _3htz" id="u_0_6s"><div class="_567_"><div class="_2za- _2vd- uiContextualLayerParent _28dz" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;" id="u_0_6t"><div class="_1vx9"><a class="_2za_" href="/watch/?ref=external&amp;v=603020973807861"><span class="_50f7">Trump says Iran is standing down</span></a></div><div class="_1vx9">Publié par <a class="_2za_ _5p5v" href="/watch/cgtnamerica/"><span class="_50f7">CGTN America</span></a></div><div class="_1vx9"><span>1 488 vues</span></div></div></div><div class="_5bke" id="u_0_6u"></div></div><i class="_1jto _bsl _4ubd _3htz" id="u_0_5e"><input aria-label="Lire la vid&#xe9;o" type="button" class="accessible_elem" id="u_0_6v" /></i><span class="img _55ym _55yq _55yo _167h _4ubd _1hiu hidden_elem _360f _167h _3htz" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..." id="u_0_5f"></span><div class="_3htz _4ubd _1zmi" id="u_0_6w"></div><div class="_4ivm" id="u_0_6x"></div></div><div class="_2i84"><div id="u_0_6y"></div></div></div></div></div></div><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;" class="_3ekx _29_4"></div></span></div><div class="_42ef"><span class="_3c21"></span></div></div></div></div></div></div><div></div></div></div><div><form rel="async" class="commentable_item" method="post" data-ft="&#123;&quot;tn&quot;:&quot;]&quot;&#125;" action="/ajax/ufi/modify.php" onsubmit="" id="u_0_9q"><input type="hidden" name="jazoest" value="2703" autocomplete="off" /><input type="hidden" name="lsd" value="AVpJ6Pvr" autocomplete="off" /><input type="hidden" autocomplete="off" name="ft_ent_identifier" value="603020973807861" /><input type="hidden" autocomplete="off" name="data_only_response" value="1" /><div class="_7f6e"><div class="_5vsi"></div><noscript id="u_0_9p"></noscript></div></form></div></div></div></div></div></div><div class="_4-u2 _4-u8"><div class="_427x"><div class="_4-u2 mbm _4mrt _5jmm _5pat _5v3q _7cqq _4-u8" data-ft="&#123;&quot;fbfeed_location&quot;:36&#125;" data-fte="1" data-ftr="1" data-xt="AZVnZdCzcm0wzK1neF26b3ljE-1bzxz7IVRJrCiTk0AroG9UIGqUyEjtUZrOSdFAKb1u2eYK0hM54tvQRv0dbgRWF5sJTBS6tFT1djPjfFtEZVW2cMX64L5zli-HJc4i2__hGfHyEYelcKkUZga01jlwXCnCPVhPDsGL5YyijEM27YdstmWxQVRi2MHcY8bIl2lMtCh_ACrc93GaUZaXTb9LR2gEV60pVO6xOi9I3br0LzuDmQyZfI4XNNtw0yyeA9sREOf5Yxl2bz-aq4UUc916kSxLVAmK2U9d5cXJiQ5wUslHuZ6r0A2Fulq1S1F_O_SDN-F0MDI5MdIQcdn-JVqL40olDLvsZB2jj3ZRzf9qPJU_YK6BXAjFQsmaZt3ld_1y9kZOZTPfYzdyorWV0wz54mlb6BMFNU6HnkIvz9A_JqWqFTN_w-YCwcB3kk2BYfIRnNEtxc6Rv7Ser7qn3WhJOI4gx3sV8vk41kqqsSrtGuxK7OrAj2C0Olv7Ld3fpRixD6c5Vgi2AGwCLrdAxABjcylggKxkZhVWOuSxxkKSDQmCxKbVBz9rQS_TideWC7KOP7tAH0dRu6gd3WblS-fgT7AJz2_gANU7ShHeM-g8HsJZhtQx79a3GPcgqxm8yGiWB7bH4G7NkXeIOblbBOfml1sYyjb6svZGmvi9aZimdmrqZPl4jxB--3vO6Gcrj9Svknwir9jsDdia5bLS2N6H3GpTA9znbjM0jDAeDG6V8ncSeOFfA_fUf0bdZCQFuqPnZVUySY5qtZ2Rk4F_YBQ5pcKH7cen9fnLg6Mv92Pjart5EYRjoqmmxiYOShGvO-0SwAphJuCW2AcBTpNmeQzqyy0wGeIBmOe_kLSW0cKdyDoWYy1JM2zW7zvjU61YwNUBJQA2FyfOheL0F7kyb6rvJ49zMiP6ntjAtR1g47EIGSk3RF99-iDW1tQR5vh2_E6MU-Jc3CAZ899vn8AFcnbZhdDzlFeGHB3FRx70lQiUpFnvqucPY11gHuOVMY70qcUct6Rfzc4FJEO-9O8k41aZwYLI0tGkgMFVQteTsCb2Va3_Tslyot7_r4fesoCjM2_nhbWvUsr8kek16TNiDV6mL0umv39caEaFclc0eDVotSWuSQPg0SzeXO6-pWMuk0rI3f1smZoX7mrd0l9hm1Gt7XufeHT_kAhgOSMTqETgGVPTpUYw06SsQ0gZLPYsfyzKv1ubuQgr0wiNG9M5e4FHBr0R--zVr6-rbYi4Ho6yTk2-GQlS_aV6IeFKDoN3Jm2U5LS9eP_OQFzEe6YgTlKVurV6Yr4NB1uTTCL-81H0wSzSlfCVGgDBwmgz9MFtro9banL8Mwc-J8eEbxENXu88bLHPpUAUBsgGeV9F3hColSGyQnHo8tNZ7ngJJ9qtTzLt9rMST0nQVQlZ7QjYFZmgDdEalPLT_gMACjP8zIMdnWDWOOo9o4lYUzsulRc26ToyZuUmXaLGjGuru71A6mmmuI_K4g4-iMEyMFjjFL6hp6bqVjITTM_GYN-G9yH1RSs--aXsUNa8tQvcSPjWULLkKxEAclgTCA5ZBUDwmUhd14S1PMYrztldbWdaIQfln1f_jtr_c5kLpFVf-vgaIA2tbtOuD5Mba2mZuGo0gi8KSITr5TdrexDyDxlcHbKVBybmLXEWCDoiX5u2IdyrlDIoI0nxjxWiHFc6lklCt7hgVAbJhSoTAHOPLct06Wi1TuJyeiwTbSxk09XeVud6XC8Yvs487EVbKkvbRYPrps4gw-FX073gmMx9WMFwpvx6_vRSwY0pdMN2ngh3wy0p0qP5acqHe7yXc-QI3tfX11FOKpFm-rPntbZMqgzhMLWbTrosfFzp-nkNIq0AaQM71G-cAyoqXfsOtGV4YUS5Av2EeQ" data-xt-vimp="&#123;&quot;pixel_in_percentage&quot;:0,&quot;duration_in_ms&quot;:1,&quot;client_track_subsequent_impression&quot;:true,&quot;client_no_dedup&quot;:false,&quot;subsequent_gap_in_ms&quot;:60000,&quot;log_initial_nonviewable&quot;:false,&quot;should_batch&quot;:true,&quot;require_horizontally_onscreen&quot;:false,&quot;encrypt_data_xt&quot;:true,&quot;signal_mode_for_ss&quot;:false,&quot;vital_mode_for_ss&quot;:false,&quot;should_not_delay_impression&quot;:true,&quot;should_log_endpoint_info&quot;:true,&quot;log_viewability_events_for_infra_validation&quot;:false,&quot;log_visibility_hidden_when_browser_inactive&quot;:true,&quot;count_blue_bar_height&quot;:true,&quot;detect_occlusion&quot;:false,&quot;should_not_log_on_occlusion&quot;:false,&quot;is_rhc&quot;:false&#125;" id="u_0_11"><div class="_3ccb" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;" data-gt="&#123;&quot;type&quot;:&quot;click2canvas&quot;,&quot;fbsource&quot;:703,&quot;ref&quot;:&quot;nf_generic&quot;&#125;" id="u_0_21"><div></div><div class="_5pcr userContentWrapper" style="" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;"><div class="_1dwg _1w_m _q7o" data-vc-ignore-dynamic="1"><div class="_4r_y" id="u_0_24"><div class="_1wbl" id="u_0_23"></div></div><div><div class="l_c3pyo2v0u i_c3pynyi2f clearfix"><div class="clearfix y_c3pyo2ta3"><a class="_5pb8 o_c3pynyi2g _8o _8s lfloat _ohe" aria-hidden="true" tabindex="-1" target="" data-ft="&#123;&quot;tn&quot;:&quot;\u003C&quot;&#125;" href="https://www.facebook.com/cgtnamerica/?ref=nf&amp;hc_ref=ARTAOKL4rLQGWmxPtJOkczQjK3fchiHPY-qgBpRwjs5qWunEvQ3Dv7Mk7cH6w8hFk_4"><div class="_38vo"><noscript id="u_0_db"></noscript><div><img class="_s0 _4ooo _5xib _5sq7 _44ma _rw img" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t1.0-1/p50x50/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&amp;_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=3acb44171b892a809a8d6bba8847175c&amp;oe=5EA6F099" alt="" aria-label="CGTN America" role="img" /></div></div></a><div class="clearfix _42ef"><div class="rfloat _ohf"></div><div class="u_c3pyo2ta4"><div><div class="_6a _5u5j"><div class="_6a _6b" style="height:40px"></div><div class="_6a _5u5j _6b"><h5 class="_7tae _14f3 _14f5 _5pbw _5vra" id="u_0_22" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fwn fcg"><span class="fcg"><span class="fwb"><a class="profileLink" href="https://www.facebook.com/cgtnamerica/?hc_ref=ARRyB21v_y8LOlWGcNPxNEsf39XQWpwEwrHZ9CyuHIoOWLcGgFW_fPqflDbHC0yiBtM&amp;ref=nf_target" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;">CGTN America</a></span></span></span></h5><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_300653326696613;2661339540627968;;9" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a class="_5pcq" href="/cgtnamerica/posts/2661339540627968" target=""><abbr title="08/01/2020 08:09" data-utime="1578499772" data-shorten="1" class="_5ptz timestamp livetimestamp"><span class="timestampContent">17 h</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div></div></div></div></div></div></div><div data-testid="post_message" class="_5pbx userContent _3576" data-ft="&#123;&quot;tn&quot;:&quot;K&quot;&#125;"><p>WATCH LIVE: U.S. President Donald Trump delivers a speech after Iran launched more than a dozen ballistic missiles targeting at least two U.S.-led coalition military bases in Iraq.</p></div><div class="_3x-2" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"></div><div><div class="_5r69 _sds _1hvl"><div class="mts"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="mtm"><div id="u_0_2b" class="_6m2 _1zpr clearfix _dcs _4_w4 _6m8 _59ap _64lx _3eqz _20pq _3eqw _2rk1 _1-9r _5qqr" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="clearfix _2r3x"><div class="lfloat _ohe"><span class="_3m6-"><div class="_150c" data-ft="&#123;&quot;tn&quot;:&quot;F&quot;&#125;"><img class="_3chq" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/73498128_2561945404027112_5549509388982550528_n.jpg?_nc_cat=1&amp;_nc_ohc=O4hbNfG9qWUAQk8eg_svftpquIiwvzECWwYRd2mm3BAo_C2oeF-C9kphQ&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=aa9faa42f0f5d676fba54640c429932a&amp;oe=5E95D692" /><div class="_5mly _45oh" id="u_0_cv"><div class="_5v-_" id="u_0_cw"><div class="_1c_u _45oh" id="u_0_cx"><div class="_53j5" style="height:282px;width:500px;" tabindex="0" id="u_0_cy"><video height="282" width="500" preload="metadata" style="" class="_ox1 _21y0" data-video-width="500" data-video-height="282" data-original-aspect-ratio="1.7777777777778" id="u_0_cz"></video><div class="_4lpe _3htz"><img class="_4lpf" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/73498128_2561945404027112_5549509388982550528_n.jpg?_nc_cat=1&amp;_nc_ohc=O4hbNfG9qWUAQk8eg_svftpquIiwvzECWwYRd2mm3BAo_C2oeF-C9kphQ&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=aa9faa42f0f5d676fba54640c429932a&amp;oe=5E95D692" /></div><div class="_m54 _1jto _3htz" id="u_0_d0"><img class="_1445 _2sy9 img" src="https://static.xx.fbcdn.net/rsrc.php/v3/y4/r/-PAXP-deijE.gif" alt="" style="background-image: url(&#039;https\3a //scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/s526x296/73498128_2561945404027112_5549509388982550528_n.jpg?_nc_cat\3d 1\26 _nc_ohc\3d O4hbNfG9qWUAQk8eg_svftpquIiwvzECWwYRd2mm3BAo_C2oeF-C9kphQ\26 _nc_ht\3d scontent-cdg2-1.xx\26 _nc_tp\3d 1\26 oh\3d 7b40756da51498684c9fb677f6522ff9\26 oe\3d 5EA9ECB1&#039;);" id="u_0_d1" /></div><div class="_4ubd _170l _27db _3htz" id="u_0_d2"></div><div class="_npo hidden_elem _3htz" id="u_0_d3"><div class="_3drf"></div><div class="_3x62"><div class="_63rn"><div class="_63rm"><div class="_iij">Vous semblez rencontrer des problèmes pour lire cette vidéo. Si c’est le cas, essayez de redémarrer votre navigateur</div><div class="_iir">Fermer</div></div></div></div></div><div class="_567v _3bw _4ubd _28dy _3htz" id="u_0_d4"><div class="_567_"><div class="_2za- _2vd- uiContextualLayerParent _28dz" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;" id="u_0_d5"><div class="_1vx9"><a class="_2za_" href="/watch/?ref=external&amp;v=2561909697364016"><span class="_50f7">Live: Trump speaks after Iran strikes U.S. bases in Iraq</span></a></div><div class="_1vx9">Publié par <a class="_2za_ _5p5v" href="/watch/ChinaGlobalTVNetwork/"><span class="_50f7">CGTN</span></a></div><div class="_1vx9"><span>288 370 vues</span></div></div></div><div class="_5bke" id="u_0_d6"></div></div><i class="_1jto _bsl _4ubd _3htz" id="u_0_5g"><input aria-label="Lire la vid&#xe9;o" type="button" class="accessible_elem" id="u_0_d7" /></i><span class="img _55ym _55yq _55yo _167h _4ubd _1hiu hidden_elem _360f _167h _3htz" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..." id="u_0_5h"></span><div class="_3htz _4ubd _1zmi" id="u_0_d8"></div><div class="_4ivm" id="u_0_d9"></div></div><div class="_2i84"><div id="u_0_da"></div></div></div></div></div></div><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;" class="_3ekx _29_4"></div></span></div><div class="_42ef"><span class="_3c21"></span></div></div></div><div class="_2ezg"><div class="clearfix _3-8n"><div class="lfloat _ohe _50f8">288 370 vues</div><div class="rfloat _ohf"></div></div></div></div></div><div class="mtm _5pcm"><span class="_1nb_ fwn fcg" id="u_0_9f" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fcg"><span class="fwb"><a class="profileLink" href="https://www.facebook.com/ChinaGlobalTVNetwork/?hc_ref=ARRQoGDS9LB6KYSKYV7R2RQv6bcHhlVBGHUwKk9CYyNzRxN7WtjhZgBlolHC1n6AUyk&amp;ref=nf_target" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;">CGTN</a></span> était en direct.</span></span><div class="_171_"><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_2561909697364016:9:0" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a href="/ChinaGlobalTVNetwork/videos/2561909697364016/" aria-label="Vid&#xe9;o, Live: Trump speaks after Iran strikes U.S. bases in Iraq, Dur&#xe9;e&#xa0;: 36 minutes, 11 secondes" ajaxify="/ChinaGlobalTVNetwork/videos/vb.565225540184937/2561909697364016/?type=3&amp;source=12" rel="theater" class="_5pcq" target=""><abbr title="08/01/2020 07:58" data-utime="1578499137" data-shorten="1" class="_5ptz timestamp livetimestamp"><span class="timestampContent">18 h</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div><div data-testid="post_message" class="mtm _5pco" data-ft="&#123;&quot;tn&quot;:&quot;K&quot;&#125;"><p>U.S. President Donald Trump delivers a speech after Iran launched more than a dozen ballistic missiles targeting at least two U.S.-led coalition military bases in Iraq.</p></div></div></div></div></div></div><div></div></div></div><div><form rel="async" class="commentable_item" method="post" data-ft="&#123;&quot;tn&quot;:&quot;]&quot;&#125;" action="/ajax/ufi/modify.php" onsubmit="" id="u_0_3y"><input type="hidden" name="jazoest" value="2703" autocomplete="off" /><input type="hidden" name="lsd" value="AVpJ6Pvr" autocomplete="off" /><input type="hidden" autocomplete="off" name="ft_ent_identifier" value="2661339540627968" /><input type="hidden" autocomplete="off" name="data_only_response" value="1" /><div class="_7f6e"><div class="_5vsi"></div><noscript id="u_0_3x"></noscript></div></form></div></div></div></div></div></div><div class="_4-u2 _4-u8"><div class="_427x"><div class="_4-u2 mbm _4mrt _5jmm _5pat _5v3q _7cqq _4-u8" data-ft="&#123;&quot;fbfeed_location&quot;:36&#125;" data-fte="1" data-ftr="1" data-xt="AZVo3LcsRo--zFSLr_rl5dFbPlpR5gQQb3KxSCYNqL-McoR7ECPZVlib7QKt_h_b9d5mYv3kJswRdZ_AZpz8vLljNeT7B_j59dQUewSBzuPPkvZaA_Auni89ZmOC99KPTyZZ_YvjCKTDTXr-C4k5rXm2joZoByykYMapuYbmqNAvi7ErJ-y6Kryd2w3JfjgEU6ujPfMckFZpf3RS07UDnzAU-yFXlcRAhrHt6rcxqFdf_Z1reF53DJINg06d30xHKsmz1VD2ID8E9JkWjA_TT0RqwFIcWmP56kL0ovy6Vy4aPUZiGENvtzudGS15e3BZfpGT82rftjZIa0tS3E-45QqE-ZuynorSnwpe32qVmbxKVyJ_8Va5vQg1tpEzcvVxZdLgtM4Ghg4cXy6YvtWuAxJc5fwzl1J-b6v-DumFbMZwhep-pu_JIj-ip3pmp4l64P3NhKdf1m_xW5xWKKbt7KaDcTShACNtU_J6TGjljfD3S5PZdRQtsinAoOaJDNbGpUOs7uQmUY95pk8n95zSBO3438Wih4JfTgda7foMkAd7BVkt5EzTn_Xruh5SZB9cI1UXfqLsMX5nG2eA79tVXgtTrkfq_zgUQpO6SXFmeFeSa_waBsD1qwtRsN4bTsXJGlCqyuWw5mMZ5FH2Y7PPxmMNoePG1kWjZftgkpO1liSXFssxpL8FL7qe2AO1zTm83MjHQljM3nATZJAshCUOEg_BU6rxkrmlsN-QYZJa5h7oBKmFKgWPtetyG_uO3JBWQMBB1WYNnDcuTHcmay6wa0VTNaQlo9xPcFdzdn1DxBUKvyPOsjB5uAShrFEADuQGl62i_BS5MFfYAOH7Ca6U8DWYFFJ41IS9V0TCAK-f1zl1KphI34PFyAY4gaq2AHDrFAUNeTn22BLVdR9XeEpUuBtcH4pNThK-6z-lSQ7L9PV5GUdLZ8SQT3VZxilXsPLIsEr5o4mXylHJKYrE2bNdBUo2AJkNJNN-wZEIm8avD20CWfrrXGKn94v43k_WXbmI3etNYVJ81PtDxLCIb2mlK85pxVrtOczxz5KM-8DO-RnRbAboLLtnJlxpGax_Mmayjp1k4hniDIMxRG7dgYC1ohNgHIzx08BJn_rVqFSzDkAWjmBdtqHj8g4qbe731-Rw9IGgEY6CdhgNs8Lqal_yfoKPQMWzBFPEf-Ct5Ap293WFR_qtIwBPfz-39kManzCRtNvdyrcqaMftJcmZXAYt7MwZIraqurEFgdqaTG0K68yBTtdlbWZG11gbGPFaODrxm77SAdw7cqt-zAiE0ENZMQw0f063dEfICzzppPm88SgM3pqul8Tqa52tKvVw25E2WuJEYazohMqRASc4gWgg9i-OYA3a7MFW-ZggSMAwTTsv9X_8GQBgfZqhGUA_1tzT4RDvBMcUN25SN0F4NEJLwViaHOhGc9Q5c8Fk1FDp-AqOmxr5oJZuKFk9EUc3uCmvMT1BoTGkdEmdvR8BUAQIFARGmmX8dqVgHGXeK8eTh8QuhvSxyErj3ncU1y1XN57uHxzbOUnv0ZtB3CKIdtF3jlqneJUHuwa48xBOn6cqa5wV619tBTUQL_VqIakvplT8ohRiikDSpnb8bspUQTOcgyIco3BgZ8DebUW4Djd5WrO8SiXspWVybfbOEovrnd5XQ6nKbm-Q0ccEvZFtFIFkZpwPzzv2ysjn3NR6UVsCrv3XwVhDMSS6pExY_3MSEf6stL8D7GY2n7DQZMxtTUXWF5xr18PS7mwa3DZVk2gS9clVuc9SY8nx-OL9O_blVKKXxMrdOHUQcrLt9_HNTY9U8x2sVjbqLDYywWIn_77kEoCWIF4YFT8h_f5lmc5qITUEezM" data-xt-vimp="&#123;&quot;pixel_in_percentage&quot;:0,&quot;duration_in_ms&quot;:1,&quot;client_track_subsequent_impression&quot;:true,&quot;client_no_dedup&quot;:false,&quot;subsequent_gap_in_ms&quot;:60000,&quot;log_initial_nonviewable&quot;:false,&quot;should_batch&quot;:true,&quot;require_horizontally_onscreen&quot;:false,&quot;encrypt_data_xt&quot;:true,&quot;signal_mode_for_ss&quot;:false,&quot;vital_mode_for_ss&quot;:false,&quot;should_not_delay_impression&quot;:true,&quot;should_log_endpoint_info&quot;:true,&quot;log_viewability_events_for_infra_validation&quot;:false,&quot;log_visibility_hidden_when_browser_inactive&quot;:true,&quot;count_blue_bar_height&quot;:true,&quot;detect_occlusion&quot;:false,&quot;should_not_log_on_occlusion&quot;:false,&quot;is_rhc&quot;:false&#125;" id="u_0_12"><div class="_3ccb" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;" data-gt="&#123;&quot;type&quot;:&quot;click2canvas&quot;,&quot;fbsource&quot;:703,&quot;ref&quot;:&quot;nf_generic&quot;&#125;" id="u_0_1e"><div></div><div class="_5pcr userContentWrapper" style="" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;"><div class="_1dwg _1w_m _q7o" data-vc-ignore-dynamic="1"><div class="_4r_y" id="u_0_1h"><div class="_1wbl" id="u_0_1g"></div></div><div><div class="l_c3pyo2v0u i_c3pynyi2f clearfix"><div class="clearfix y_c3pyo2ta3"><a class="_5pb8 o_c3pynyi2g _8o _8s lfloat _ohe" aria-hidden="true" tabindex="-1" target="" data-ft="&#123;&quot;tn&quot;:&quot;\u003C&quot;&#125;" href="https://www.facebook.com/cgtnamerica/?ref=nf&amp;hc_ref=ARQscZKXhwdvQNnD-Sm8FLXxj0coXI81vHw99zScnMHc0qMtIamU9QIBuYyieCS5rBs"><div class="_38vo"><noscript id="u_0_4p"></noscript><div><img class="_s0 _4ooo _5xib _5sq7 _44ma _rw img" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t1.0-1/p50x50/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&amp;_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=3acb44171b892a809a8d6bba8847175c&amp;oe=5EA6F099" alt="" aria-label="CGTN America" role="img" /></div></div></a><div class="clearfix _42ef"><div class="rfloat _ohf"></div><div class="u_c3pyo2ta4"><div><div class="_6a _5u5j"><div class="_6a _6b" style="height:40px"></div><div class="_6a _5u5j _6b"><h5 class="_7tae _14f3 _14f5 _5pbw _5vra" id="u_0_1f" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fwn fcg"><span class="fcg"><span class="fwb"><a class="profileLink" href="https://www.facebook.com/cgtnamerica/?hc_ref=ARTM9g6SuWnTCwDcX5yxnInwVhrsmDgNMY6MFpwB1ih48WzopXRPfUH0wNejcShZ_qY&amp;ref=nf_target" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;">CGTN America</a></span> a partagé une <a href="/ChinaGlobalTVNetwork/posts/3874293632611428" data-ft="&#123;&quot;tn&quot;:&quot;-U&quot;&#125;">publication</a>.</span></span></h5><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_300653326696613;2661095317319057;;9" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a class="_5pcq" href="/cgtnamerica/posts/2661095317319057" target=""><abbr title="08/01/2020 05:56" data-utime="1578491796" data-shorten="1" class="_5ptz timestamp livetimestamp"><span class="timestampContent">20 h</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div></div></div></div></div></div></div><div class="userContent"></div><div class="_3x-2" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"></div><div><div class="_5r69 _sds _34q1"><div class="mts"><div class="mtm _4fzb"><div class="clearfix _2pin"><div class="_5pb8 lfloat _ohe"><a ajaxify="/stories/view/async/?card_id=3874289495945175&amp;story_id=1588989024520841&amp;auto_open_viewersheet=0&amp;story_action_source=post_header_actor_photo" href="#" rel="async-post" aria-label="Lire les stories non vues" role="button" id="u_0_4n"><div class="_38vo"><noscript id="u_0_4o"></noscript><div><img class="_s0 _4ooo _6y97 _6_ut _5xib _44ma img" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t31.0-1/cp0/p32x32/15774834_1489560107751471_6217657570454684800_o.png?_nc_cat=1&amp;_nc_ohc=QUBuxOT_1McAQlBxMsnOqk5xc-3X10S8MCErwfxsz3BWY-YqvbgaweYiw&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=1cc5e1b04f95c9b505b3d9a6573c36bd&amp;oe=5EB3969E" alt="" aria-label="CGTN" role="img" style="width:28px;height:28px" /></div></div></a></div><div class="_2pis _42ef"><span class="_1nb_ fwn fcg" id="u_0_1x" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fwb" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;"><a href="https://www.facebook.com/ChinaGlobalTVNetwork/?hc_ref=ARQ3HFuR-JO_vKaCFtH760dotMNDMYQ880qoFjmMQfQhh1BlLJWXM9J8Wrz-7pZ-xos&amp;fref=nf">CGTN</a></span></span><div class="_5pcp"><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_3874293632611428:9:0" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a class="_5pcq" href="/ChinaGlobalTVNetwork/posts/3874293632611428" target=""><abbr title="08/01/2020 02:55" data-utime="1578480921" data-shorten="1" class="_5ptz timestamp livetimestamp"><span class="timestampContent">23 h</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div></div></div><div></div><div data-testid="post_message" class="mtm _5pco" data-ft="&#123;&quot;tn&quot;:&quot;K&quot;&#125;"><p>A Ukrainian Boeing-737 plane with 176 people on board crashed in Iran shortly after taking off, killing everyone on board.</p></div></div><div class="_3b6i _5zb3"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="mtm"><div id="u_0_1m" class="_6m2 _1zpr clearfix _dcs _4_w4 _59ap _2bf7 _64lx _3eqz _20pq _3eqw _2rk1 _1-9r _5qqr" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="clearfix _2r3x"><div class="lfloat _ohe"><span class="_3m6-"><div class="_6ks"><a href="https://l.facebook.com/l.php?u=https%3A%2F%2Fnews.cgtn.com%2Fnews%2F2020-01-08%2FUkrainian-plane-with-180-aboard-crashes-near-Tehran-N56HEMRS0g%2Findex.html&amp;h=AT0pxP6y86OWRE1Aeip0LI_CPItfYG8QaMskN4pEO-dAh6CeGeRl0dHLnnm9R9hbwT-8wzMLo4ncNKCSPDiXm7blefRJLpHyIEWM37G22fZhbPz78Li-MwR9lzeZJ0PPZLZGJ7tH51OJu28ociZMXXoxpaGWTt-p76E" aria-describedby="u_0_1y" aria-label="Ukrainian passenger plane crash kills all 176 on board" tabindex="-1" target="_blank" rel="nofollow" data-lynx-mode="hover"><div class="accessible_elem inlineBlock" id="u_0_1y">A Ukrainian Boeing-737 plane with 176 people on board crashed in Iran shortly after taking off, killing everyone on board.</div><div class="_6l- __c_"><div class="uiScaledImageContainer _6m5 fbStoryAttachmentImage" style="width:474px;height:247.95378151261px;"><img class="scaledImageFitWidth img" src="https://external-cdg2-1.xx.fbcdn.net/safe_image.php?d=AQDDK2k1bjfTVIHD&amp;w=476&amp;h=249&amp;url=https%3A%2F%2Fnews.cgtn.com%2Fnews%2F30456a4d3259544f3367444f3051544e30677a4e31457a6333566d54%2Fimg%2Fffb6152c61144b619084470cf1c71112%2Fffb6152c61144b619084470cf1c71112-1.png&amp;cfs=1&amp;upscale=1&amp;fallback=news_d_placeholder_publisher&amp;_nc_hash=AQByCm8kJKbChRi3" data-src="https://external-cdg2-1.xx.fbcdn.net/safe_image.php?d=AQDDK2k1bjfTVIHD&amp;w=476&amp;h=249&amp;url=https%3A%2F%2Fnews.cgtn.com%2Fnews%2F30456a4d3259544f3367444f3051544e30677a4e31457a6333566d54%2Fimg%2Fffb6152c61144b619084470cf1c71112%2Fffb6152c61144b619084470cf1c71112-1.png&amp;cfs=1&amp;upscale=1&amp;fallback=news_d_placeholder_publisher&amp;_nc_hash=AQByCm8kJKbChRi3" style="top:0px;" alt="" width="474" height="248" aria-label="Aucune description de photo disponible." /></div></div></a></div><div class="_3ekx _29_4"><div class="_6m3 _--6"><div class="_59tj _2iau"><div><div class="_6lz _6mb _1t62 ellipsis">news.cgtn.com</div><div class=""></div></div></div><div class="_3n1k"><div class="mbs _6m6 _2cnj _5s6c"><a href="https://l.facebook.com/l.php?u=https%3A%2F%2Fnews.cgtn.com%2Fnews%2F2020-01-08%2FUkrainian-plane-with-180-aboard-crashes-near-Tehran-N56HEMRS0g%2Findex.html&amp;h=AT332EuWs9PgzDI8XVfMRq0rPg7J39T-wX4ulXxMV-xzig1C9nFi_AgWRsUBFaQOnhDX5MjUZzEz-uWyWNm8G5ybPp5EgqliU8eSHKpqCU_KSOXiIIezByIRQ9J88EMWiK-U_0Ki68O5YXEB60EQhwhYBETH8tCR0tc" rel="nofollow" target="_blank" data-lynx-mode="hover">Ukrainian passenger plane crash kills all 176 on board</a></div><div class="_6m7 _3bt9">A Ukrainian Boeing-737 plane with 176 people on board crashed in Iran shortly after taking off, killing everyone on board.</div></div></div><a href="https://l.facebook.com/l.php?u=https%3A%2F%2Fnews.cgtn.com%2Fnews%2F2020-01-08%2FUkrainian-plane-with-180-aboard-crashes-near-Tehran-N56HEMRS0g%2Findex.html&amp;h=AT3S7qd6CVtHtAeDywv-hpO5vvIatr4hwW_d2DgvNVU_KUKFEKwVpee4l8XxOSjigCkooAz253nYHPEH84joY-76rQ48Uj4vMB1PpHN6N0YFJFSGxzkOBqe57ACwuO4RJwLCoJvk-9uj8XXxCM96pI61sHV5jmzx2ylgTKf4QEs2jQ" aria-label="Ukrainian passenger plane crash kills all 176 on board" aria-describedby="u_0_1o" rel="noopener nofollow" tabindex="-1" target="_blank" class="_52c6" data-lynx-mode="hover"><div class="accessible_elem" id="u_0_1o">A Ukrainian Boeing-737 plane with 176 people on board crashed in Iran shortly after taking off, killing everyone on board.</div></a></div></span></div><div class="_42ef"><span class="_3c21"></span></div></div></div></div></div></div></div></div></div></div><div></div></div></div><div><form rel="async" class="commentable_item" method="post" data-ft="&#123;&quot;tn&quot;:&quot;]&quot;&#125;" action="/ajax/ufi/modify.php" onsubmit="" id="u_0_1v"><input type="hidden" name="jazoest" value="2703" autocomplete="off" /><input type="hidden" name="lsd" value="AVpJ6Pvr" autocomplete="off" /><input type="hidden" autocomplete="off" name="ft_ent_identifier" value="2661095317319057" /><input type="hidden" autocomplete="off" name="data_only_response" value="1" /><div class="_7f6e"><div class="_5vsi"></div><noscript id="u_0_1u"></noscript></div></form></div></div></div></div></div></div><div class="_4-u2 _4-u8"><div class="_427x"><div class="_4-u2 mbm _4mrt _5jmm _5pat _5v3q _7cqq _4-u8" data-ft="&#123;&quot;fbfeed_location&quot;:36&#125;" data-fte="1" data-ftr="1" data-xt="AZWsETKlpZmtqfcmILXDIuPe2zsvRBJ4fRQXlZxAqyF1Yl9A0GMFljnWkAh3g9LyicjYb-9txB1-BrHl1b6iplVA4NioFCweoE9VewkQtNMJuo41Kb_krFz_OTfp5I6PUrQkkXZBVmmDeUnF0xRnr-_sG56ICZuTQV-X0odfm6sjvWlPuQPTqIG2ok5yZevD6P5DaIfdelVDLxQ0lbtieFERZ7MOfuABrkLUKUmt9q4_0dNtLjNNhIcNEW9IgJwQ6m0hfrYZuTquVeoK4ytT8gM8J_FjDmQYIkkRmiQoVa9hQRs5Azo6qzTtn2jbIUnq2otIiAc4vzsYjqEgivxhRpuE3zZxI1_AUM4ivbIqb9R42PHx9Sy2Q3aCyTDexeWnbxk5254H__vuWI6YzSjyipiciCJqwuVvmbgBC3gko5eeddQNp3gQnce7VB_T55XfKT7Utv3ycOPgKa0uhr7bvlfyk3rhgzByLZrujsa_XwTiNWB85ITYTwkggI9vGB0SqcK0tBtXcLqglsvX_M2nJBnSHnELxAmD22VQ-evqhW-NytZ44nfdFO1ZbUl8VMTTcqvQq-SjU3aUe1rImCmqk99N7mJA2N0BmSLgx21PfZk_KvE1QdFfWwE4cOzuZuR0Hsh9w3jCBef17wFDjJzE49DgSFI3d0ZH_AlAspRl7sDS31D72Y8-y7Ss1FAh2XXdokTHOWfJX-dXHvEyyThfN5q-Ex5_1ERv1pNF9Vxb8H046ZuCP0gN9hNInqe32T4uYpxFmiUgzbTWALTf5oPqJX_vQkZNmi34QfXYwbSQE_o6JfGysFLLX9K67dfR-bDK6dFZk-1bns_CLGaBGUwTg856wn33mWDpD3xPDDJpZbxqTLkrp9DTIFunuaEDYKUfIYDCl89k29n9WjRFIdq6B-32qKbZqhJAbA37L1V-xE93mnb3_KVpEDYA8bvZzrYSw2GeD948_kqQtx99UErr0nEvxbKWTKE3BvWy5XgdxTjYfscuQ4rqkpmjiinIIGTkiW4WAANKcVqnFkY2kJqu4cW61mkQ_OIb69Viiezdp2uUV2g8B4QxUDvubYuYWQ1NLCUqfofesPxoG3hfIkXKordl29MhBovKVJ2rNKgsJ9w426ZOjcKGYb4HrJmbWAwl8sOP0Yi2kPK2zfDn3CaXEXc-KCzCv8Q5MYxRBlvQBBI-XGfA6vpyHbZL2INX8aJZZEnYECLgSl5EW2HDw7p8Ig3-5UJBJK_km8tleF9Idk5tJFSAmkO5ZyHBzo83a3mijBGSxbd7sfyzj0DCsyQP_ckBmrWIMbD5PqsU1EoKwKMzFCKSdaAde1sXMNMK428MyWoxh1eCJ0TpMYu2v-kpZ8740Qz2Pnt-fAemaNxCuem4pj06kkJSKFNQynhaO-0axirS3yqbXfSzJHoPiFLFviiD2gV-1Cdr8HdQz0icSYcIFGzI8v4Nvlnlqw8ZLGqXh3SeMrOKHRT44J4UovpP4SHZQ6G9SUIDabIVYUHzFuRsdPsSSByizTSV4VMXYKPNEhDn9aG_C4BFZr94V4HeRgNEHA2G-ZQ6OSEFgfaQtpv0cKUeaD-KY3FgwlEX_i9QpzAVpE0K3-b6SiFvz-bBJumlpaimqmzIF0xxTCXL_t-6HVA13VRUNPeWR8DTEFUIlK1tlSQvb15DE-5u7Mu-hI_KT5nRTU1herWTv7dDkVUtEYpWQNRtemzZ7gDOgA8bMX5aQLu7Gp12XPdsZdDTn-F__lIoMCRnAQKSOfwk0QYfLitUgZ49xdB8mIiPdPS4OVoV8ldJncLwvzDyuyHJKPy33736yeXE9CNe2zgBEG04Qv09j5hJPvaxkwwA3LhrgDGsLE35OJGE0maBWkpwMm-16MczTYT7FUpuLHE5BEoqEA" data-xt-vimp="&#123;&quot;pixel_in_percentage&quot;:0,&quot;duration_in_ms&quot;:1,&quot;client_track_subsequent_impression&quot;:true,&quot;client_no_dedup&quot;:false,&quot;subsequent_gap_in_ms&quot;:60000,&quot;log_initial_nonviewable&quot;:false,&quot;should_batch&quot;:true,&quot;require_horizontally_onscreen&quot;:false,&quot;encrypt_data_xt&quot;:true,&quot;signal_mode_for_ss&quot;:false,&quot;vital_mode_for_ss&quot;:false,&quot;should_not_delay_impression&quot;:true,&quot;should_log_endpoint_info&quot;:true,&quot;log_viewability_events_for_infra_validation&quot;:false,&quot;log_visibility_hidden_when_browser_inactive&quot;:true,&quot;count_blue_bar_height&quot;:true,&quot;detect_occlusion&quot;:false,&quot;should_not_log_on_occlusion&quot;:false,&quot;is_rhc&quot;:false&#125;" id="u_0_13"><div class="_3ccb" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;" data-gt="&#123;&quot;type&quot;:&quot;click2canvas&quot;,&quot;fbsource&quot;:703,&quot;ref&quot;:&quot;nf_generic&quot;&#125;" id="u_0_2x"><div></div><div class="_5pcr userContentWrapper" style="" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;"><div class="_1dwg _1w_m _q7o" data-vc-ignore-dynamic="1"><div class="_4r_y" id="u_0_3k"><div class="_1wbl" id="u_0_3j"></div></div><div><div class="l_c3pyo2v0u i_c3pynyi2f clearfix"><div class="clearfix y_c3pyo2ta3"><a class="_5pb8 o_c3pynyi2g _8o _8s lfloat _ohe" aria-hidden="true" tabindex="-1" target="" data-ft="&#123;&quot;tn&quot;:&quot;\u003C&quot;&#125;" href="https://www.facebook.com/cgtnamerica/?ref=nf&amp;hc_ref=ARRdE43aOs5MZnholhIu9xx4M8_Ih4lnzCxvURksqJh-tCJC50yMAYDKu99ZM9IMxUY"><div class="_38vo"><noscript id="u_0_a2"></noscript><div><img class="_s0 _4ooo _5xib _5sq7 _44ma _rw img" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t1.0-1/p50x50/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&amp;_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=3acb44171b892a809a8d6bba8847175c&amp;oe=5EA6F099" alt="" aria-label="CGTN America" role="img" /></div></div></a><div class="clearfix _42ef"><div class="rfloat _ohf"></div><div class="u_c3pyo2ta4"><div><div class="_6a _5u5j"><div class="_6a _6b" style="height:40px"></div><div class="_6a _5u5j _6b"><h5 class="_7tae _14f3 _14f5 _5pbw _5vra" id="u_0_3f" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fwn fcg"><span class="fcg"><span class="fwb"><a class="profileLink" href="https://www.facebook.com/cgtnamerica/?hc_ref=ARRPL3Ud-qGY6Jd5FN6cM0JPajjvihn4Jv1GWZzli0KdwdzW0WDuwNEyWaxvwI5eIGc&amp;ref=nf_target" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;">CGTN America</a></span> a partagé une <a href="/ChinaGlobalTVNetwork/posts/3874311209276337">publication</a>.</span></span></h5><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_300653326696613;2661094323985823;;9" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a class="_5pcq" href="/cgtnamerica/posts/2661094323985823" target=""><abbr title="08/01/2020 05:56" data-utime="1578491764" data-shorten="1" class="_5ptz timestamp livetimestamp"><span class="timestampContent">20 h</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div></div></div></div></div></div></div><div class="userContent"></div><div class="_3x-2" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"></div><div><div class="_5r69 _sds _1hvl"><div class="mts"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="mtm"><div id="u_0_40" class="_6m2 _1zpr clearfix _dcs _4_w4 _6m8 _59ap _64lx _3eqz _20pq _3eqw _2rk1 _1-9r _5qqr" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="clearfix _2r3x"><div class="lfloat _ohe"><span class="_3m6-"><div class="_150c" data-ft="&#123;&quot;tn&quot;:&quot;F&quot;&#125;"><img class="_3chq" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/73516026_764722124037001_2109819829945892864_n.jpg?_nc_cat=107&amp;_nc_ohc=D1y4oDPuGugAQnxpYKXd3_YTc2O_iMxD_lii7xs9X75TfA5yhZEkzu0TQ&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=923c2c9d25dc0c2a72b8f11f740f41ad&amp;oe=5EA6CD4C" /><div class="_5mly _45oh" id="u_0_7h"><div class="_5v-_" id="u_0_7i"><div class="_1c_u _45oh" id="u_0_7j"><div class="_53j5" style="height:282px;width:500px;" tabindex="0" id="u_0_7k"><video height="282" width="500" preload="metadata" style="" class="_ox1 _21y0" data-video-width="500" data-video-height="282" data-original-aspect-ratio="1.7777777777778" id="u_0_7l"></video><div class="_4lpe _3htz"><img class="_4lpf" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/73516026_764722124037001_2109819829945892864_n.jpg?_nc_cat=107&amp;_nc_ohc=D1y4oDPuGugAQnxpYKXd3_YTc2O_iMxD_lii7xs9X75TfA5yhZEkzu0TQ&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=923c2c9d25dc0c2a72b8f11f740f41ad&amp;oe=5EA6CD4C" /></div><div class="_m54 _1jto _3htz" id="u_0_7m"><img class="_1445 _2sy9 img" src="https://static.xx.fbcdn.net/rsrc.php/v3/y4/r/-PAXP-deijE.gif" alt="" style="background-image: url(&#039;https\3a //scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/s526x296/73516026_764722124037001_2109819829945892864_n.jpg?_nc_cat\3d 107\26 _nc_ohc\3d D1y4oDPuGugAQnxpYKXd3_YTc2O_iMxD_lii7xs9X75TfA5yhZEkzu0TQ\26 _nc_ht\3d scontent-cdg2-1.xx\26 _nc_tp\3d 1\26 oh\3d 2ffa9d9969340a2d4a0749b2f5ea9462\26 oe\3d 5EAAF298&#039;);" id="u_0_7n" /></div><div class="_4ubd _170l _27db _3htz" id="u_0_7o"></div><div class="_npo hidden_elem _3htz" id="u_0_7p"><div class="_3drf"></div><div class="_3x62"><div class="_63rn"><div class="_63rm"><div class="_iij">Vous semblez rencontrer des problèmes pour lire cette vidéo. Si c’est le cas, essayez de redémarrer votre navigateur</div><div class="_iir">Fermer</div></div></div></div></div><div class="_567v _3bw _4ubd _28dy _3htz" id="u_0_7q"><div class="_567_"><div class="_2za- _2vd- uiContextualLayerParent _28dz" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;" id="u_0_7r"><div class="_1vx9"><a class="_2za_" href="/watch/?ref=external&amp;v=764719224037291"><span class="_50f7">Iran&#039;s supreme leader says missile strike is a &#039;slap&#039; at U.S.</span></a></div><div class="_1vx9">Publié par <a class="_2za_ _5p5v" href="/watch/ChinaGlobalTVNetwork/"><span class="_50f7">CGTN</span></a></div><div class="_1vx9"><span>32 920 vues</span></div></div></div><div class="_5bke" id="u_0_7s"></div></div><i class="_1jto _bsl _4ubd _3htz" id="u_0_5i"><input aria-label="Lire la vid&#xe9;o" type="button" class="accessible_elem" id="u_0_7t" /></i><span class="img _55ym _55yq _55yo _167h _4ubd _1hiu hidden_elem _360f _167h _3htz" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..." id="u_0_5j"></span><div class="_3htz _4ubd _1zmi" id="u_0_7u"></div><div class="_4ivm" id="u_0_7v"></div></div><div class="_2i84"><div id="u_0_7w"></div></div></div></div></div></div><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;" class="_3ekx _29_4"></div></span></div><div class="_42ef"><span class="_3c21"></span></div></div></div><div class="_2ezg"><div class="clearfix _3-8n"><div class="lfloat _ohe _50f8">32 920 vues</div><div class="rfloat _ohf"></div></div></div></div></div><div class="mtm _5pcm"><span class="_1nb_ fwn fcg" id="u_0_3g" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fwb" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;"><a href="https://www.facebook.com/ChinaGlobalTVNetwork/?hc_ref=ARR4kylVKTvoAO3H74rLunKuYl-srxIXjSMvY8LM51kC-gVgBgTIiSMM6lzaX1VPiNY&amp;fref=nf">CGTN</a></span></span><div class="_171_"><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_3874311209276337:9:0" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a href="/ChinaGlobalTVNetwork/videos/764719224037291/" aria-label="Vid&#xe9;o, Iran&#039;s supreme leader says missile strike is a &#039;slap&#039; at U.S., Dur&#xe9;e&#xa0;: 39 secondes" ajaxify="/ChinaGlobalTVNetwork/videos/vb.565225540184937/764719224037291/?type=3&amp;source=12" rel="theater" class="_5pcq" target=""><abbr title="08/01/2020 03:01" data-utime="1578481289" data-shorten="1" class="_5ptz timestamp livetimestamp"><span class="timestampContent">23 h</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div><div data-testid="post_message" class="mtm _5pco" data-ft="&#123;&quot;tn&quot;:&quot;K&quot;&#125;"><div id="id_5e16fafc720446b73447051" class="text_exposed_root"><p>Iranian Supreme Leader Ayatollah Ali Khamenei on Wednesday in an address to the nation said &quot;we slapped them (Americans) on the face last night&quot; with a missile <span class="text_exposed_hide">…</span><span class="text_exposed_show">strike on U.S. military bases in Iraq, calling for an end to U.S. presence in the heated region. </span></p><div class="text_exposed_show"><p> For more: <a href="https://l.facebook.com/l.php?u=https%3A%2F%2Fnews.cgtn.com%2Fnews%2F2020-01-08%2F-Iran-s-supreme-leader-says-missile-strike-is-a-slap-at-U-S--N5scJg2wa4%2Findex.html&amp;h=AT3MEm6XLDjRSKcpErxzkdc28zjkb2ux89yHB_YD0fiYWssCJLyPmUGkGTsxTrUsV4G0w0_DgkZVQJiTK6mY17kQjCHhmBcx08h8yxWplSFbcNDFwtabcrYP1f2uasFPL23LaFywSY4bZxp-sb47XWPW5VEAH73m8lg3y4-cUM8hq6c" target="_blank" data-ft="&#123;&quot;tn&quot;:&quot;-U&quot;&#125;" rel="nofollow" data-lynx-mode="hover">https://news.cgtn.com/…/-Iran-s-supreme-leader-s…/index.html</a></p></div><span class="text_exposed_hide"> <span class="text_exposed_link"><a class="see_more_link" onclick="var func = function(e) &#123; e.preventDefault(); &#125;; var parent = Parent.byClass(this, &quot;text_exposed_root&quot;); if (parent &amp;&amp; parent.getAttribute(&quot;id&quot;) == &quot;id_5e16fafc720446b73447051&quot;) &#123; CSS.addClass(parent, &quot;text_exposed&quot;); Arbiter.inform(&quot;reflow&quot;); &#125;; func(event); " data-ft="&#123;&quot;tn&quot;:&quot;e&quot;&#125;" href="#" role="button"><span class="see_more_link_inner">Afficher la suite</span></a></span></span></div></div></div></div></div></div></div><div></div></div></div><div><form rel="async" class="commentable_item" method="post" data-ft="&#123;&quot;tn&quot;:&quot;]&quot;&#125;" action="/ajax/ufi/modify.php" onsubmit="" id="u_0_a1"><input type="hidden" name="jazoest" value="2703" autocomplete="off" /><input type="hidden" name="lsd" value="AVpJ6Pvr" autocomplete="off" /><input type="hidden" autocomplete="off" name="ft_ent_identifier" value="2661094323985823" /><input type="hidden" autocomplete="off" name="data_only_response" value="1" /><div class="_7f6e"><div class="_5vsi"></div><noscript id="u_0_a0"></noscript></div></form></div></div></div></div></div></div><div class="_4-u2 _4-u8"><div class="_427x"><div class="_4-u2 mbm _4mrt _5jmm _5pat _5v3q _7cqq _4-u8" data-ft="&#123;&quot;fbfeed_location&quot;:36&#125;" data-fte="1" data-ftr="1" data-xt="AZXXJnXmdkPvmtaxfgHEDZyn2DDDD4Rn-_ZIZwqkou2ta4lRJwqeTY9SiAG5PBySY-qPX_JsJQqpeE0jQPPwQ4BRzFYM0EXXTex2BzL-gCie2BIlWAaQstMaK31maavTG4Sfa4deccBSiiSFoag-_DACY43xYsE6nPYVfrqRKwbD9xD1IFmiB2k_eTBnRa_Qoiblhs3YpB3YtmLHPZiT0P2jvHP1ZAd97XGt-T-n4pXWL9HXNp3a3cGb8NzAhYT393DbgjhTg1U_ubt1SPebi21EKOePZRccmZ9qe6OPTAWY6SAvcyeDVZWCzIASyFBDngShTFOv2pnBvId6lD5F-dovlTa5cVByGOiBSSHJ5OraB7DcwRJvuLz7FhFI0jr0U6qD1SAY3GhnSuL6IkgZHLK_fBe1axHso6DsJ-vJGmhdK2AlUr1KJGINj6ZbL5SB9C3IvvrY0kLA0mMWkb9qDQnk5FVBtgko9uISDDEMlBwvechiU7LfgLd5aGNEBHC5PzYtFWRbI0mLVQmT_bJ3qy1bGBAmTTQAmOP9nmxkkrGo1NoS-6g15oGz5KzVCbwl7rWdS1A2d0DQtIuI7mBf8q6wUQjds3FuvQSkNfawCb-gD08FRpmMp6I12l7bgaiUqe6LRaazF1SkhBg9X7c8owBvxy745GAGICgl3w5avgVHdK5vFH0pWWrNsDGILhOWfxz-XM5s-RHzpXWhsQ_83DSbXaZhdryISYPCc7gcW13n5AtLlM0AecvSRP90uRZCPiTtnXeRgH4-zyDQ5J7tlXx4je_xQGqZsOahJkVt3a-x1HxX0hKJj8HunCnL90oEzzFwMNSJzcfI-H-u9fggtC5xEJm2vja_y3_xKmJMwDST-_uGF2JFzt-QR2uH-PyoZrhJxuOebUCTqP1jgOIEBJB9x2tlBTnGwpCl2gim9fXZuGYFXpTfg29m8WCLtfD-tC8ifgKBtCcKBrAYA8cGG-8A" data-xt-vimp="&#123;&quot;pixel_in_percentage&quot;:0,&quot;duration_in_ms&quot;:1,&quot;client_track_subsequent_impression&quot;:true,&quot;client_no_dedup&quot;:false,&quot;subsequent_gap_in_ms&quot;:60000,&quot;log_initial_nonviewable&quot;:false,&quot;should_batch&quot;:true,&quot;require_horizontally_onscreen&quot;:false,&quot;encrypt_data_xt&quot;:true,&quot;signal_mode_for_ss&quot;:false,&quot;vital_mode_for_ss&quot;:false,&quot;should_not_delay_impression&quot;:true,&quot;should_log_endpoint_info&quot;:true,&quot;log_viewability_events_for_infra_validation&quot;:false,&quot;log_visibility_hidden_when_browser_inactive&quot;:true,&quot;count_blue_bar_height&quot;:true,&quot;detect_occlusion&quot;:false,&quot;should_not_log_on_occlusion&quot;:false,&quot;is_rhc&quot;:false&#125;" id="u_0_14"><div class="_3ccb" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;" data-gt="&#123;&quot;type&quot;:&quot;click2canvas&quot;,&quot;fbsource&quot;:703,&quot;ref&quot;:&quot;nf_generic&quot;&#125;" id="u_0_9d"><div></div><div class="_5pcr userContentWrapper" style="" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;"><div class="_1dwg _1w_m _q7o" data-vc-ignore-dynamic="1"><div class="_4r_y" id="u_0_a5"><div class="_1wbl" id="u_0_a4"></div></div><div><div class="l_c3pyo2v0u i_c3pynyi2f clearfix"><div class="clearfix y_c3pyo2ta3"><a class="_5pb8 o_c3pynyi2g _8o _8s lfloat _ohe" aria-hidden="true" tabindex="-1" target="" data-ft="&#123;&quot;tn&quot;:&quot;\u003C&quot;&#125;" href="https://www.facebook.com/cgtnamerica/?ref=nf&amp;hc_ref=ARQIJkVQbSBHsRVIjMdI9QYZxqOohpt1-6qnbg8Oh0RNTd-QBwozzSP84x1HMOPqmMg"><div class="_38vo"><noscript id="u_0_de"></noscript><div><img class="_s0 _4ooo _5xib _5sq7 _44ma _rw img" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t1.0-1/p50x50/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&amp;_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=3acb44171b892a809a8d6bba8847175c&amp;oe=5EA6F099" alt="" aria-label="CGTN America" role="img" /></div></div></a><div class="clearfix _42ef"><div class="rfloat _ohf"></div><div class="u_c3pyo2ta4"><div><div class="_6a _5u5j"><div class="_6a _6b" style="height:40px"></div><div class="_6a _5u5j _6b"><h5 class="_7tae _14f3 _14f5 _5pbw _5vra" id="u_0_9g" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fwn fcg"><span class="fwb fcg" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;"><a href="https://www.facebook.com/cgtnamerica/?hc_ref=ARRo48FRfL5WBwGit_iQ4wweyUs6y-l61rtGEnct_oIkfeKuDHcxlTB2xV6L_Z3gzBs&amp;fref=nf">CGTN America</a></span></span></h5><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_300653326696613;2659898387438750;;9" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a href="/cgtnamerica/videos/458567871694659/" aria-label="Vid&#xe9;o, Geopolitical Expert John Sitilides explains Iraq&#039;s response to the U.S. following the Soleimani airstrike, Dur&#xe9;e&#xa0;: 1 minute, 2 secondes" ajaxify="/cgtnamerica/videos/vb.300653326696613/458567871694659/?type=3&amp;source=12" rel="theater" class="_5pcq" target=""><abbr title="07/01/2020 16:11" data-utime="1578442317" data-shorten="1" class="_5ptz"><span class="timestampContent">7 janvier, 16:11</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><div data-hover="tooltip" data-tooltip-content="Ajout&#xe9;e le Mardi 7 janvier 2020, 16:11" class="inlineBlock"><i class="_5qla img sp_NnQJe0BAlA8 sx_a4e8dc"></i></div><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div></div></div></div></div></div></div><div data-testid="post_message" class="_5pbx userContent _3576" data-ft="&#123;&quot;tn&quot;:&quot;K&quot;&#125;"><p>What&#039;s next for Iraq as tensions between the U.S. and Iran get worse? Global Risk Analyst John Sitilides explains the latest.</p></div><div class="_3x-2" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="mtm"><div id="u_0_a3" class="_6m2 _1zpr clearfix _dcs _4_w4 _6m8 _59ap _64lx _3eqz _20pq _3eqw _2rk1 _1-9r _5qqr" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="clearfix _2r3x"><div class="lfloat _ohe"><span class="_3m6-"><div class="_150c" data-ft="&#123;&quot;tn&quot;:&quot;F&quot;&#125;"><img class="_3chq" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/74465429_782579905489137_1038097761561477120_n.jpg?_nc_cat=102&amp;_nc_ohc=5w_qmPFoUI4AQl2nWK3YCYjDy7MnKNMonMXsJDWXxDnXsmvcTTx6B7i4Q&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=b461d320f5a0b676b5f8523c891be862&amp;oe=5E92F562" /><div class="_5mly _45oh" id="u_0_bz"><div class="_5v-_" id="u_0_c0"><div class="_1c_u _45oh" id="u_0_c1"><div class="_53j5" style="height:282px;width:500px;" tabindex="0" id="u_0_c2"><video height="282" width="500" preload="metadata" style="" class="_ox1 _21y0" data-video-width="500" data-video-height="282" data-original-aspect-ratio="1.7777777777778" id="u_0_c3"></video><div class="_4lpe _3htz"><img class="_4lpf" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/74465429_782579905489137_1038097761561477120_n.jpg?_nc_cat=102&amp;_nc_ohc=5w_qmPFoUI4AQl2nWK3YCYjDy7MnKNMonMXsJDWXxDnXsmvcTTx6B7i4Q&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=b461d320f5a0b676b5f8523c891be862&amp;oe=5E92F562" /></div><div class="_m54 _1jto _3htz" id="u_0_c4"><img class="_1445 _2sy9 img" src="https://static.xx.fbcdn.net/rsrc.php/v3/y4/r/-PAXP-deijE.gif" alt="" style="background-image: url(&#039;https\3a //scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/s526x296/74465429_782579905489137_1038097761561477120_n.jpg?_nc_cat\3d 102\26 _nc_ohc\3d 5w_qmPFoUI4AQl2nWK3YCYjDy7MnKNMonMXsJDWXxDnXsmvcTTx6B7i4Q\26 _nc_ht\3d scontent-cdg2-1.xx\26 _nc_tp\3d 1\26 oh\3d e5c5d16ec7bf5a6eeddd624bdbfca08f\26 oe\3d 5EB115B6&#039;);" id="u_0_c5" /></div><div class="_4ubd _170l _27db _3htz" id="u_0_c6"></div><div class="_npo hidden_elem _3htz" id="u_0_c7"><div class="_3drf"></div><div class="_3x62"><div class="_63rn"><div class="_63rm"><div class="_iij">Vous semblez rencontrer des problèmes pour lire cette vidéo. Si c’est le cas, essayez de redémarrer votre navigateur</div><div class="_iir">Fermer</div></div></div></div></div><div class="_567v _3bw _4ubd _28dy _3htz" id="u_0_c8"><div class="_567_"><div class="_2za- _2vd- uiContextualLayerParent _28dz" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;" id="u_0_c9"><div class="_1vx9"><a class="_2za_" href="/watch/?ref=external&amp;v=458567871694659"><span class="_50f7">Geopolitical Expert John Sitilides explains Iraq&#039;s response to the U.S. following the Soleimani airstrike</span></a></div><div class="_1vx9">Publié par <a class="_2za_ _5p5v" href="/watch/cgtnamerica/"><span class="_50f7">CGTN America</span></a></div><div class="_1vx9"><span>5 273 vues</span></div></div></div><div class="_5bke" id="u_0_ca"></div></div><i class="_1jto _bsl _4ubd _3htz" id="u_0_ax"><input aria-label="Lire la vid&#xe9;o" type="button" class="accessible_elem" id="u_0_cb" /></i><span class="img _55ym _55yq _55yo _167h _4ubd _1hiu hidden_elem _360f _167h _3htz" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..." id="u_0_ay"></span><div class="_3htz _4ubd _1zmi" id="u_0_cc"></div><div class="_4ivm" id="u_0_cd"></div></div><div class="_2i84"><div id="u_0_ce"></div></div></div></div></div></div><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;" class="_3ekx _29_4"></div></span></div><div class="_42ef"><span class="_3c21"></span></div></div></div></div></div></div><div></div></div></div><div><form rel="async" class="commentable_item" method="post" data-ft="&#123;&quot;tn&quot;:&quot;]&quot;&#125;" action="/ajax/ufi/modify.php" onsubmit="" id="u_0_dd"><input type="hidden" name="jazoest" value="2703" autocomplete="off" /><input type="hidden" name="lsd" value="AVpJ6Pvr" autocomplete="off" /><input type="hidden" autocomplete="off" name="ft_ent_identifier" value="458567871694659" /><input type="hidden" autocomplete="off" name="data_only_response" value="1" /><div class="_7f6e"><div class="_5vsi"></div><noscript id="u_0_dc"></noscript></div></form></div></div></div></div></div></div><div class="_4-u2 _4-u8"><div class="_427x"><div class="_4-u2 mbm _4mrt _5jmm _5pat _5v3q _7cqq _4-u8" data-ft="&#123;&quot;fbfeed_location&quot;:36&#125;" data-fte="1" data-ftr="1" data-xt="AZX6X8Bct5bOhqd5ONxGeV_Nt0Y7FlW3fgl1iOtY6xT0XltaXYDuL1-Ct6HEpC7ll1ptpwUq6eHTauNNBYWvSo2VcVNSQ41rBEGpJRcPtNKpDjIKtE952DuJ1WQ1U4RG-XTaw7PVMhNxOU4ZkrY675lcSU-2fYyVRh5n_mdCdY6fJ6TPKfBBaNWQLI8gwPLYsI1EylZek9S8G8leBkVhV6I-BMPpfWzeYXJgqLKeiGVk4T-YhoyfGXfi7tj2ybcSL-eWcLDm6LSSCGtymJrFUtUAIvSw0doyuhPjt7kl6X2sBg0xgwHm9Fx_pq4WTZKM3OQuxnBrYyil2hdsqNwqunG4uv4pXRORSH-CB78pudwMukdeyPibNon4k03h7TLHFPYqCtbOu-ORR0vvRB5QrE37bX1kv4y_7BlXWZDDAWPLb4PF0ZJ9MmOCrtmEwWKvFWfe3WD4XLUpdqN-NukTm2gS4ZHJDxjXhK-ggJ3MvFfc0eWq7u9K4fCSgt00d0tUk7XVTJWVHGxsPzwYzHGr5PytV1w_W08-HM8OAHixCRq5KjDytcGlrGVBF-iBJrcmQKZkGmDhav7O_Z5qwxZa9N89HU-ySMQ_X3QdRXoRiZ78zVf9sVIa-tY06EgveVOlUvhqZNf682XJeaIiSXJPW8X6-SR6boa0A1AtGvC_KKjSxZtM05q5qE3JdoolOjWscc5j4Ex-0fAt49MGmDqLaqFoyG3mXwEJa1jOtDT-DPqSHNqbfunByZIz0ipSJUNH7PFR9dp3Aq6ZYEgaJ3JQAoWsrc87qvuqB03M75OD-sOpPZT6Z1aXR4ButsB8MNbp4PRI_fwA1QyycWskNlP5jkpVoeEINwuC2CtVdP3wh7ckNBb9Rm9yiJLdcDGSB7lx7vK4PongP_4NdqV7CfNg-boH0v3Hmh553PK07gFSqG7LweRIBnoBAQi-VhTR-OsfiiVs0fGSKVZrAxVFDKG0ycNo" data-xt-vimp="&#123;&quot;pixel_in_percentage&quot;:0,&quot;duration_in_ms&quot;:1,&quot;client_track_subsequent_impression&quot;:true,&quot;client_no_dedup&quot;:false,&quot;subsequent_gap_in_ms&quot;:60000,&quot;log_initial_nonviewable&quot;:false,&quot;should_batch&quot;:true,&quot;require_horizontally_onscreen&quot;:false,&quot;encrypt_data_xt&quot;:true,&quot;signal_mode_for_ss&quot;:false,&quot;vital_mode_for_ss&quot;:false,&quot;should_not_delay_impression&quot;:true,&quot;should_log_endpoint_info&quot;:true,&quot;log_viewability_events_for_infra_validation&quot;:false,&quot;log_visibility_hidden_when_browser_inactive&quot;:true,&quot;count_blue_bar_height&quot;:true,&quot;detect_occlusion&quot;:false,&quot;should_not_log_on_occlusion&quot;:false,&quot;is_rhc&quot;:false&#125;" id="u_0_15"><div class="_3ccb" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;" data-gt="&#123;&quot;type&quot;:&quot;click2canvas&quot;,&quot;fbsource&quot;:703,&quot;ref&quot;:&quot;nf_generic&quot;&#125;" id="u_0_8n"><div></div><div class="_5pcr userContentWrapper" style="" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;"><div class="_1dwg _1w_m _q7o" data-vc-ignore-dynamic="1"><div class="_4r_y" id="u_0_9c"><div class="_1wbl" id="u_0_9b"></div></div><div><div class="l_c3pyo2v0u i_c3pynyi2f clearfix"><div class="clearfix y_c3pyo2ta3"><a class="_5pb8 o_c3pynyi2g _8o _8s lfloat _ohe" aria-hidden="true" tabindex="-1" target="" data-ft="&#123;&quot;tn&quot;:&quot;\u003C&quot;&#125;" href="https://www.facebook.com/cgtnamerica/?ref=nf&amp;hc_ref=ARQJetKy7qF8RiIfrwE8LeJgGdBjQNcKPrrS-qFGmfAjFJ78SXp1QBnN7dSCj96b1GQ"><div class="_38vo"><noscript id="u_0_aw"></noscript><div><img class="_s0 _4ooo _5xib _5sq7 _44ma _rw img" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t1.0-1/p50x50/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&amp;_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=3acb44171b892a809a8d6bba8847175c&amp;oe=5EA6F099" alt="" aria-label="CGTN America" role="img" /></div></div></a><div class="clearfix _42ef"><div class="rfloat _ohf"></div><div class="u_c3pyo2ta4"><div><div class="_6a _5u5j"><div class="_6a _6b" style="height:40px"></div><div class="_6a _5u5j _6b"><h5 class="_7tae _14f3 _14f5 _5pbw _5vra" id="u_0_95" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fwn fcg"><span class="fwb fcg" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;"><a href="https://www.facebook.com/cgtnamerica/?hc_ref=ARS63vW_PgXjnuX8QiQiVydEr1nW9YmXz6D3pc4SaUmMu421Vy90UkgWx2GPBJOjYRM&amp;fref=nf">CGTN America</a></span></span></h5><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_300653326696613;2659889537439635;;9" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a href="/cgtnamerica/videos/2600764323543751/" aria-label="Vid&#xe9;o, Are women making strides in tech?, Dur&#xe9;e&#xa0;: 2 minutes, 13 secondes" ajaxify="/cgtnamerica/videos/vb.300653326696613/2600764323543751/?type=3&amp;source=12" rel="theater" class="_5pcq" target=""><abbr title="07/01/2020 16:06" data-utime="1578441965" data-shorten="1" class="_5ptz"><span class="timestampContent">7 janvier, 16:06</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><div data-hover="tooltip" data-tooltip-content="Ajout&#xe9;e le Mardi 7 janvier 2020, 16:05" class="inlineBlock"><i class="_5qla img sp_NnQJe0BAlA8 sx_a4e8dc"></i></div><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div></div></div></div></div></div></div><div data-testid="post_message" class="_5pbx userContent _3576" data-ft="&#123;&quot;tn&quot;:&quot;K&quot;&#125;"><p>They say there are many other women making strides that should have been speaking. How are women making strides in tech? CGTN talked to several women at CES to get their views on how women are making a difference in the tech field and what changes are still needed. See what they had to say.</p></div><div class="_3x-2" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="mtm"><div id="u_0_9a" class="_6m2 _1zpr clearfix _dcs _4_w4 _6m8 _59ap _64lx _3eqz _20pq _3eqw _2rk1 _1-9r _5qqr" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="clearfix _2r3x"><div class="lfloat _ohe"><span class="_3m6-"><div class="_150c" data-ft="&#123;&quot;tn&quot;:&quot;F&quot;&#125;"><img class="_3chq" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/75494289_515732555706346_169047503293906944_n.jpg?_nc_cat=107&amp;_nc_ohc=6zyyQ8Nu0IUAQmvbxdXTJS_UOktT1DaS-hiLMoIr1YXhyGdm8jyKtKaZg&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=250badaddf85ed0547961ad853b2b715&amp;oe=5EAAA3F0" /><div class="_5mly _45oh" id="u_0_ag"><div class="_5v-_" id="u_0_ah"><div class="_1c_u _45oh" id="u_0_ai"><div class="_53j5" style="height:282px;width:500px;" tabindex="0" id="u_0_aj"><video height="282" width="500" preload="metadata" style="" class="_ox1 _21y0" data-video-width="500" data-video-height="282" data-original-aspect-ratio="1.7777777777778" id="u_0_ak"></video><div class="_4lpe _3htz"><img class="_4lpf" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/75494289_515732555706346_169047503293906944_n.jpg?_nc_cat=107&amp;_nc_ohc=6zyyQ8Nu0IUAQmvbxdXTJS_UOktT1DaS-hiLMoIr1YXhyGdm8jyKtKaZg&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=250badaddf85ed0547961ad853b2b715&amp;oe=5EAAA3F0" /></div><div class="_m54 _1jto _3htz" id="u_0_al"><img class="_1445 _2sy9 img" src="https://static.xx.fbcdn.net/rsrc.php/v3/y4/r/-PAXP-deijE.gif" alt="" style="background-image: url(&#039;https\3a //scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/s526x296/75494289_515732555706346_169047503293906944_n.jpg?_nc_cat\3d 107\26 _nc_ohc\3d 6zyyQ8Nu0IUAQmvbxdXTJS_UOktT1DaS-hiLMoIr1YXhyGdm8jyKtKaZg\26 _nc_ht\3d scontent-cdg2-1.xx\26 _nc_tp\3d 1\26 oh\3d 174aa835bc49cd9f7bc3caf4155921e7\26 oe\3d 5E95A016&#039;);" id="u_0_am" /></div><div class="_4ubd _170l _27db _3htz" id="u_0_an"></div><div class="_npo hidden_elem _3htz" id="u_0_ao"><div class="_3drf"></div><div class="_3x62"><div class="_63rn"><div class="_63rm"><div class="_iij">Vous semblez rencontrer des problèmes pour lire cette vidéo. Si c’est le cas, essayez de redémarrer votre navigateur</div><div class="_iir">Fermer</div></div></div></div></div><div class="_567v _3bw _4ubd _28dy _3htz" id="u_0_ap"><div class="_567_"><div class="_2za- _2vd- uiContextualLayerParent _28dz" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;" id="u_0_aq"><div class="_1vx9"><a class="_2za_" href="/watch/?ref=external&amp;v=2600764323543751"><span class="_50f7">Are women making strides in tech?</span></a></div><div class="_1vx9">Publié par <a class="_2za_ _5p5v" href="/watch/cgtnamerica/"><span class="_50f7">CGTN America</span></a></div><div class="_1vx9"><span>45 098 vues</span></div></div></div><div class="_5bke" id="u_0_ar"></div></div><i class="_1jto _bsl _4ubd _3htz" id="u_0_9u"><input aria-label="Lire la vid&#xe9;o" type="button" class="accessible_elem" id="u_0_as" /></i><span class="img _55ym _55yq _55yo _167h _4ubd _1hiu hidden_elem _360f _167h _3htz" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..." id="u_0_9v"></span><div class="_3htz _4ubd _1zmi" id="u_0_at"></div><div class="_4ivm" id="u_0_au"></div></div><div class="_2i84"><div id="u_0_av"></div></div></div></div></div></div><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;" class="_3ekx _29_4"></div></span></div><div class="_42ef"><span class="_3c21"></span></div></div></div></div></div></div><div></div></div></div><div><form rel="async" class="commentable_item" method="post" data-ft="&#123;&quot;tn&quot;:&quot;]&quot;&#125;" action="/ajax/ufi/modify.php" onsubmit="" id="u_0_9l"><input type="hidden" name="jazoest" value="2703" autocomplete="off" /><input type="hidden" name="lsd" value="AVpJ6Pvr" autocomplete="off" /><input type="hidden" autocomplete="off" name="ft_ent_identifier" value="2600764323543751" /><input type="hidden" autocomplete="off" name="data_only_response" value="1" /><div class="_7f6e"><div class="_5vsi"></div><noscript id="u_0_9k"></noscript></div></form></div></div></div></div></div></div><div class="_4-u2 _4-u8"><div class="_427x"><div class="_4-u2 mbm _4mrt _5jmm _5pat _5v3q _7cqq _4-u8" data-ft="&#123;&quot;fbfeed_location&quot;:36&#125;" data-fte="1" data-ftr="1" data-xt="AZVKVGKW-ZZ3D5u6Qb84o-mgJ41jxxEtmcICOskrML4D81Lwc_A3oHmvk47wZCPtZDdm-GAZvUogwRo67GuX2yTl3gsItbwiDmD41PqyrknsVCgJQeXYZij27jpiM-8ZPL9Cm_IDhNHRDRyWsUgfiAf_L2D-T99cm2sPtyCVsa_0hSUrywZRkZXc036v2TdrlAtgHKT5yfiJr2XmIYoO6DpxuBcAGKZBNHSzIRva-b0vyz9L7_AN3WM0kcns_A3vSMKaSonXUneHIz-gRfV5fI9XN6MsBF9gUPRQwSiOe60srtAlE-re4fTbzz17vcrmJs4H5gxHURvbq-KKbByBOnGGpQ0urgmXb25xs-v75y8VAFOLZ8VUIZgtaGYggHL_0KjElnppjN7TP6O80SduHzjkGNICuiHRd58hWRGA7sR2YKYXBDFqvvW2aV8ylcBtshfHSCWdHhzQL2A_-8WKBywf6bZmIyP37nv7Eyu9PUPpLvJ2w-JGXBCMF34YK9M38yadS9xdqMMLaHKgxtLAUV39cr55TJJpwR5ywxnvH1wTN3XCnnubodrcyXZNsiKLpeADCDjryxQzbv69cSJB-fnbG6JuJimCDv3pf9E8paL5ackVarZKQtkpE0dw-wrKqYjuvC22fRwbTW7_8Z5lIwzfdSqVbUaNwKgQWRv19L7wV0OMtR40xCU7sMqyuk7kjfWIlz7-3xFvq96Hus8hkCeYPgyqEiw4G3Su2Hl5BjgJlYXGJ599G11PARoX49W5r5gArPvi8fWMC4-bKsrlfbk23Py70dwbAeOXTE_NrVOIdlvSHxb0RwUDfVnBcaXtb4p3qf6iSHiDRYEYQVWuth-_sHqMY0q1jjmo1PbrO1yFIYVAHnVoSEchl_RonGml2pEcr4u6MHHoYw_BEZUhA46ZxSnYTCRlxjw-nwOKsbNBQ8QtjjW7NGaBOvDMwwfn32T58E1oTKNyiNx8asf7eLwE" data-xt-vimp="&#123;&quot;pixel_in_percentage&quot;:0,&quot;duration_in_ms&quot;:1,&quot;client_track_subsequent_impression&quot;:true,&quot;client_no_dedup&quot;:false,&quot;subsequent_gap_in_ms&quot;:60000,&quot;log_initial_nonviewable&quot;:false,&quot;should_batch&quot;:true,&quot;require_horizontally_onscreen&quot;:false,&quot;encrypt_data_xt&quot;:true,&quot;signal_mode_for_ss&quot;:false,&quot;vital_mode_for_ss&quot;:false,&quot;should_not_delay_impression&quot;:true,&quot;should_log_endpoint_info&quot;:true,&quot;log_viewability_events_for_infra_validation&quot;:false,&quot;log_visibility_hidden_when_browser_inactive&quot;:true,&quot;count_blue_bar_height&quot;:true,&quot;detect_occlusion&quot;:false,&quot;should_not_log_on_occlusion&quot;:false,&quot;is_rhc&quot;:false&#125;" id="u_0_16"><div class="_3ccb" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;" data-gt="&#123;&quot;type&quot;:&quot;click2canvas&quot;,&quot;fbsource&quot;:703,&quot;ref&quot;:&quot;nf_generic&quot;&#125;" id="u_0_2c"><div></div><div class="_5pcr userContentWrapper" style="" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;"><div class="_1dwg _1w_m _q7o" data-vc-ignore-dynamic="1"><div class="_4r_y" id="u_0_2g"><div class="_1wbl" id="u_0_2f"></div></div><div><div class="l_c3pyo2v0u i_c3pynyi2f clearfix"><div class="clearfix y_c3pyo2ta3"><a class="_5pb8 o_c3pynyi2g _8o _8s lfloat _ohe" aria-hidden="true" tabindex="-1" target="" data-ft="&#123;&quot;tn&quot;:&quot;\u003C&quot;&#125;" href="https://www.facebook.com/cgtnamerica/?ref=nf&amp;hc_ref=ARQNu9F7NfXzlnn9NvOk3SV6E64_Ifx7wV7IYwrB3u_Id7GyJKIJrLm2ZXU4-VbfXx0"><div class="_38vo"><noscript id="u_0_5b"></noscript><div><img class="_s0 _4ooo _5xib _5sq7 _44ma _rw img" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t1.0-1/p50x50/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&amp;_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=3acb44171b892a809a8d6bba8847175c&amp;oe=5EA6F099" alt="" aria-label="CGTN America" role="img" /></div></div></a><div class="clearfix _42ef"><div class="rfloat _ohf"></div><div class="u_c3pyo2ta4"><div><div class="_6a _5u5j"><div class="_6a _6b" style="height:40px"></div><div class="_6a _5u5j _6b"><h5 class="_7tae _14f3 _14f5 _5pbw _5vra" id="u_0_2d" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fwn fcg"><span class="fwb fcg" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;"><a href="https://www.facebook.com/cgtnamerica/?hc_ref=ARRHHzs_MOS51al-aMSXZKZyXuy1kZ9g77Fjmcr9LUl_10QXDnk-VnCzCBMN5nyI2nc&amp;fref=nf">CGTN America</a></span></span></h5><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_300653326696613;2659799267448662;;9" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a href="/cgtnamerica/videos/575551206614901/" aria-label="Vid&#xe9;o, Futuristic cars at CES, Dur&#xe9;e&#xa0;: 49 secondes" ajaxify="/cgtnamerica/videos/vb.300653326696613/575551206614901/?type=3&amp;source=12" rel="theater" class="_5pcq" target=""><abbr title="07/01/2020 15:06" data-utime="1578438406" data-shorten="1" class="_5ptz"><span class="timestampContent">7 janvier, 15:06</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><div data-hover="tooltip" data-tooltip-content="Ajout&#xe9;e le Mardi 7 janvier 2020, 15:06" class="inlineBlock"><i class="_5qla img sp_NnQJe0BAlA8 sx_a4e8dc"></i></div><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div></div></div></div></div></div></div><div data-testid="post_message" class="_5pbx userContent _3576" data-ft="&#123;&quot;tn&quot;:&quot;K&quot;&#125;"><p>Would you take a flying Uber? Or ride in a car that can drive sideways? This year <a class="_58cn" href="/hashtag/ces?source=feed_text&amp;epa=HASHTAG" data-ft="&#123;&quot;type&quot;:104,&quot;tn&quot;:&quot;*N&quot;&#125;"><span class="_5afx"><span aria-label="hashtag" class="_58cl _5afz">#</span><span class="_58cm">CES</span></span></a> is showing what cars in the future are going to look like.</p></div><div class="_3x-2" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="mtm"><div id="u_0_2e" class="_6m2 _1zpr clearfix _dcs _4_w4 _6m8 _59ap _64lx _3eqz _20pq _3eqw _2rk1 _1-9r _5qqr" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="clearfix _2r3x"><div class="lfloat _ohe"><span class="_3m6-"><div class="_150c" data-ft="&#123;&quot;tn&quot;:&quot;F&quot;&#125;"><img class="_3chq" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/72236481_1314752665376553_8812062088571650048_n.jpg?_nc_cat=105&amp;_nc_ohc=_gthAn-79CgAQmo9WrS1eFibnb3JhRkeB4ZBji0sa4t_rPM-4GvYYuJ2g&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=db3ecf776d49bb7fdae79a2356d9c980&amp;oe=5E9AC43E" /><div class="_5mly _45oh" id="u_0_4v"><div class="_5v-_" id="u_0_4w"><div class="_1c_u _45oh" id="u_0_4x"><div class="_53j5" style="height:282px;width:500px;" tabindex="0" id="u_0_4y"><video height="282" width="500" preload="metadata" style="" class="_ox1 _21y0" data-video-width="500" data-video-height="282" data-original-aspect-ratio="1.7777777777778" id="u_0_4z"></video><div class="_4lpe _3htz"><img class="_4lpf" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/72236481_1314752665376553_8812062088571650048_n.jpg?_nc_cat=105&amp;_nc_ohc=_gthAn-79CgAQmo9WrS1eFibnb3JhRkeB4ZBji0sa4t_rPM-4GvYYuJ2g&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=db3ecf776d49bb7fdae79a2356d9c980&amp;oe=5E9AC43E" /></div><div class="_m54 _1jto _3htz" id="u_0_50"><img class="_1445 _2sy9 img" src="https://static.xx.fbcdn.net/rsrc.php/v3/y4/r/-PAXP-deijE.gif" alt="" style="background-image: url(&#039;https\3a //scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/s526x296/72236481_1314752665376553_8812062088571650048_n.jpg?_nc_cat\3d 105\26 _nc_ohc\3d _gthAn-79CgAQmo9WrS1eFibnb3JhRkeB4ZBji0sa4t_rPM-4GvYYuJ2g\26 _nc_ht\3d scontent-cdg2-1.xx\26 _nc_tp\3d 1\26 oh\3d f942f7ac2fd3b8dade66b2b031b23008\26 oe\3d 5EAF951D&#039;);" id="u_0_51" /></div><div class="_4ubd _170l _27db _3htz" id="u_0_52"></div><div class="_npo hidden_elem _3htz" id="u_0_53"><div class="_3drf"></div><div class="_3x62"><div class="_63rn"><div class="_63rm"><div class="_iij">Vous semblez rencontrer des problèmes pour lire cette vidéo. Si c’est le cas, essayez de redémarrer votre navigateur</div><div class="_iir">Fermer</div></div></div></div></div><div class="_567v _3bw _4ubd _28dy _3htz" id="u_0_54"><div class="_567_"><div class="_2za- _2vd- uiContextualLayerParent _28dz" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;" id="u_0_55"><div class="_1vx9"><a class="_2za_" href="/watch/?ref=external&amp;v=575551206614901"><span class="_50f7">Futuristic cars at CES</span></a></div><div class="_1vx9">Publié par <a class="_2za_ _5p5v" href="/watch/cgtnamerica/"><span class="_50f7">CGTN America</span></a></div><div class="_1vx9"><span>1 494 vues</span></div></div></div><div class="_5bke" id="u_0_56"></div></div><i class="_1jto _bsl _4ubd _3htz" id="u_0_3h"><input aria-label="Lire la vid&#xe9;o" type="button" class="accessible_elem" id="u_0_57" /></i><span class="img _55ym _55yq _55yo _167h _4ubd _1hiu hidden_elem _360f _167h _3htz" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..." id="u_0_3i"></span><div class="_3htz _4ubd _1zmi" id="u_0_58"></div><div class="_4ivm" id="u_0_59"></div></div><div class="_2i84"><div id="u_0_5a"></div></div></div></div></div></div><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;" class="_3ekx _29_4"></div></span></div><div class="_42ef"><span class="_3c21"></span></div></div></div></div></div></div><div></div></div></div><div><form rel="async" class="commentable_item" method="post" data-ft="&#123;&quot;tn&quot;:&quot;]&quot;&#125;" action="/ajax/ufi/modify.php" onsubmit="" id="u_0_31"><input type="hidden" name="jazoest" value="2703" autocomplete="off" /><input type="hidden" name="lsd" value="AVpJ6Pvr" autocomplete="off" /><input type="hidden" autocomplete="off" name="ft_ent_identifier" value="575551206614901" /><input type="hidden" autocomplete="off" name="data_only_response" value="1" /><div class="_7f6e"><div class="_5vsi"></div><noscript id="u_0_30"></noscript></div></form></div></div></div></div></div></div><div class="_4-u2 _4-u8"><div class="_427x"><div class="_4-u2 mbm _4mrt _5jmm _5pat _5v3q _7cqq _4-u8" data-ft="&#123;&quot;fbfeed_location&quot;:36&#125;" data-fte="1" data-ftr="1" data-xt="AZWa2p9zY7PDeYzYng1-wehCy83kiKg4Qx8rzWqnIuaMtsvlP-QJnBM1RyM2y40ikPeE4SIcqoDugwEtvxlapyq9t4FArK2V9w6AwRhNSVr31pnlD8Yfo0v5zSIkY_ebkN2brSpTTv6jBj14BOkxiyFcOUgApHeMiGEI-O4uVRGaeh44G3XgkTIgHRig_6IFmzDGRyUlNN7oZUdQ5jRHayfxsM4TNpzgjPT7BU0nBeWNdaYKV0NxialYAk8WNKyu1KkQjSCAkD4jMmFrLazzht-U-FuKR3fQQ1zu0TfJjqK99dYEjpFeS5XQiu1MRMSeQRMaS0qvCYmHxsdxMboiQkCARc3DT6YArOF_w-o3CPITdRb4CglbdwL64IKTIhsnWcEuh9Si6GVhN6GVB1x2kCPFEX1EfKprv3c_IvA_gECZrw_7btFM1ls98acpe7dsWStjzGX1q7c2o1J52G-kICIF7RZBjxuoy6B8cSfSOOKzBX1j8yHhE6M7v5FyE2qlIpCafOFvoFc4WsIVY8bOagULeLpw8Wa0gUioZWl8yZCV5OpgXxQRboxSs2vkmwQ-C_xmnf4Ar1M0aPmGVxVb19Ynbp8ima2ck831ZDO2mZCGMobZnoCsfc8zoiC9woosD0vI3Yd3Lb4iIqxja1gH4mbQYi0Sq66Yq_vYSkESQ4zhUxPH_ubD_ekxGJyracIvqralZzdZjsNZIsl11KDryXornJ4m6x5DIo7aRJE6_KY6m9pl1mhkKUNW6X0dihiX5pX24ykhd_02duHVz6qlY2Jj1W9MrYbx8_wHnyuCRZVmbu9LUhPFqNmbEZtnfz9x1EoOUKHy_rIB5Hp9VjWlqOptn7zRryN1VTEllC3-9tECXceeQ5we5R5LL3_vcy_SIwDOZf9ksvATYRlwmmJdqql9W9dUzkL33OPjr4q9OcgWSoE0rIhfWthx4Hi0CLQri_OrJYHrC3QRxW--ZDYH_XuYHf-XDR6oNTDHzjRvp0xkbTSggBLGDh4WOxFKGOxL9wu1v8tDl9gmOoHt14izFjbHJoE_QRjTXPH6rSOuBex9pAp3SxQ0jmK0iulvI4ha7mkY7Og1WAQILk4xk6hcKda2uCVyjX76OQj8yB6vGg8I-xrpqTcA6vIcrdzJkLHGyFzH5gPOy8dq3dFe40izsO5egmFxDn4fwhVx99Cz0Zk930VEgmlmJCzaAiohW104JZuq2fDEqXJSqYPRSNw2bs71ilcPbD8QtND2TLzwkdNNmOvSLh_hKpPG5D4v-NkrycFeSAQwz1anH_dOvcMvggd_4KVzuzNH8aWOSIBe7pN9VlmqWzIGE2XE-uz0BJaeSGmPTx4TVTN-YpSqJIjUNXX-zVTIbAmvRt0rqx0fhR-QIO2eJUo1Pa1jeetTKGXneXyI-zCc1ihR4ubtVfyuHExO5rntcR_EY2WOWsO23fvSDp-_pjHk8Qn0qDmLDhPfZBsTTerG6d8Pg5XfzJsPELiaRi_vFdlygujkmMBiP8WRehofxlJWjg4Q8YBork_QUTlj9aXQSn_kkpxIeVvyYDOUi39KsAxABdWndBT8yfrS2FCnRrTf7RC9sEZDOVoSRKPFr3KS9ysxI8PsKdB4dbblPPQmXnPoZIWgBJM6soVfCdBtDWpxnLkNINWU4FcP7VbrhU_3ujyo5Yw3aqe94PWo2U3a-7Y8KybtGc4KU17RZxkB8PqYL3hr7Jly5I7frqL4fB1frWlWs8Os1_W4K7EvkomSsH3nY9tUN7SRzBqC0C1KHAHYwV0WXHlljxT_C60oTLlyml3zZJ2Fcdvu1DFlpQFRplmLas79vf5us6KZtyH-zhaVUbTeOn7sBxo-zcbO30XrG__di15q9HGdVkyyWAfLID_ZNO24EDOJ09Ysyg" data-xt-vimp="&#123;&quot;pixel_in_percentage&quot;:0,&quot;duration_in_ms&quot;:1,&quot;client_track_subsequent_impression&quot;:true,&quot;client_no_dedup&quot;:false,&quot;subsequent_gap_in_ms&quot;:60000,&quot;log_initial_nonviewable&quot;:false,&quot;should_batch&quot;:true,&quot;require_horizontally_onscreen&quot;:false,&quot;encrypt_data_xt&quot;:true,&quot;signal_mode_for_ss&quot;:false,&quot;vital_mode_for_ss&quot;:false,&quot;should_not_delay_impression&quot;:true,&quot;should_log_endpoint_info&quot;:true,&quot;log_viewability_events_for_infra_validation&quot;:false,&quot;log_visibility_hidden_when_browser_inactive&quot;:true,&quot;count_blue_bar_height&quot;:true,&quot;detect_occlusion&quot;:false,&quot;should_not_log_on_occlusion&quot;:false,&quot;is_rhc&quot;:false&#125;" id="u_0_17"><div class="_3ccb" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;" data-gt="&#123;&quot;type&quot;:&quot;click2canvas&quot;,&quot;fbsource&quot;:703,&quot;ref&quot;:&quot;nf_generic&quot;&#125;" id="u_0_2w"><div></div><div class="_5pcr userContentWrapper" style="" data-ft="&#123;&quot;tn&quot;:&quot;-R&quot;&#125;"><div class="_1dwg _1w_m _q7o" data-vc-ignore-dynamic="1"><div class="_4r_y" id="u_0_39"><div class="_1wbl" id="u_0_38"></div></div><div><div class="l_c3pyo2v0u i_c3pynyi2f clearfix"><div class="clearfix y_c3pyo2ta3"><a class="_5pb8 o_c3pynyi2g _8o _8s lfloat _ohe" aria-hidden="true" tabindex="-1" target="" data-ft="&#123;&quot;tn&quot;:&quot;\u003C&quot;&#125;" href="https://www.facebook.com/cgtnamerica/?ref=nf&amp;hc_ref=ARSPuH6BDctYNRofthadfI_YtKS7ibbF_o_Bv93ZtR8RHKP9utiqHSBhI9c9suqko7g"><div class="_38vo"><noscript id="u_0_9z"></noscript><div><img class="_s0 _4ooo _5xib _5sq7 _44ma _rw img" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t1.0-1/p50x50/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&amp;_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=3acb44171b892a809a8d6bba8847175c&amp;oe=5EA6F099" alt="" aria-label="CGTN America" role="img" /></div></div></a><div class="clearfix _42ef"><div class="rfloat _ohf"></div><div class="u_c3pyo2ta4"><div><div class="_6a _5u5j"><div class="_6a _6b" style="height:40px"></div><div class="_6a _5u5j _6b"><h5 class="_7tae _14f3 _14f5 _5pbw _5vra" id="u_0_37" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fwn fcg"><span class="fcg"><span class="fwb"><a class="profileLink" href="https://www.facebook.com/cgtnamerica/?hc_ref=ARSUQxivjZ8rKlP9GVyV9Ba74_fngpjyq7LKKpNzmqjhCP39YXkbX99q-2M0JtM16pc&amp;ref=nf_target" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;">CGTN America</a></span> a partagé une <a href="/ChinaGlobalTVNetwork/posts/3872550966119028">publication</a>.</span></span></h5><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_300653326696613;2659739217454667;;9" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a class="_5pcq" href="/cgtnamerica/posts/2659739217454667" target=""><abbr title="07/01/2020 14:21" data-utime="1578435702" data-shorten="1" class="_5ptz"><span class="timestampContent">7 janvier, 14:21</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div></div></div></div></div></div></div><div class="userContent"></div><div class="_3x-2" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"></div><div><div class="_5r69 _sds _1hvl"><div class="mts"><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="mtm"><div id="u_0_3z" class="_6m2 _1zpr clearfix _dcs _4_w4 _6m8 _59ap _64lx _3eqz _20pq _3eqw _2rk1 _1-9r _5qqr" data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;"><div class="clearfix _2r3x"><div class="lfloat _ohe"><span class="_3m6-"><div class="_150c" data-ft="&#123;&quot;tn&quot;:&quot;F&quot;&#125;"><img class="_3chq" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/73404113_2658817370820393_5199137463192256512_n.jpg?_nc_cat=110&amp;_nc_ohc=rxdGq3gyeWoAQkValoz1plHpkBUP5lN3UnEtKnEWpyc4eNshLisLI0Vsg&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=4bed3891a528b509f71570bc70ed2aa2&amp;oe=5E919CA9" /><div class="_5mly _45oh" id="u_0_6z"><div class="_5v-_" id="u_0_70"><div class="_1c_u _45oh" id="u_0_71"><div class="_53j5" style="height:282px;width:500px;" tabindex="0" id="u_0_72"><video height="282" width="500" preload="metadata" style="" class="_ox1 _21y0" data-video-width="500" data-video-height="282" data-original-aspect-ratio="1.7777777777778" id="u_0_73"></video><div class="_4lpe _3htz"><img class="_4lpf" src="https://scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/73404113_2658817370820393_5199137463192256512_n.jpg?_nc_cat=110&amp;_nc_ohc=rxdGq3gyeWoAQkValoz1plHpkBUP5lN3UnEtKnEWpyc4eNshLisLI0Vsg&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=4bed3891a528b509f71570bc70ed2aa2&amp;oe=5E919CA9" /></div><div class="_m54 _1jto _3htz" id="u_0_74"><img class="_1445 _2sy9 img" src="https://static.xx.fbcdn.net/rsrc.php/v3/y4/r/-PAXP-deijE.gif" alt="" style="background-image: url(&#039;https\3a //scontent-cdg2-1.xx.fbcdn.net/v/t15.5256-10/s526x296/73404113_2658817370820393_5199137463192256512_n.jpg?_nc_cat\3d 110\26 _nc_ohc\3d rxdGq3gyeWoAQkValoz1plHpkBUP5lN3UnEtKnEWpyc4eNshLisLI0Vsg\26 _nc_ht\3d scontent-cdg2-1.xx\26 _nc_tp\3d 1\26 oh\3d 913cab6ebe40e89e657ea328c3046146\26 oe\3d 5EA7888A&#039;);" id="u_0_75" /></div><div class="_4ubd _170l _27db _3htz" id="u_0_76"></div><div class="_npo hidden_elem _3htz" id="u_0_77"><div class="_3drf"></div><div class="_3x62"><div class="_63rn"><div class="_63rm"><div class="_iij">Vous semblez rencontrer des problèmes pour lire cette vidéo. Si c’est le cas, essayez de redémarrer votre navigateur</div><div class="_iir">Fermer</div></div></div></div></div><div class="_567v _3bw _4ubd _28dy _3htz" id="u_0_78"><div class="_567_"><div class="_2za- _2vd- uiContextualLayerParent _28dz" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;" id="u_0_79"><div class="_1vx9"><a class="_2za_" href="/watch/?ref=external&amp;v=2658816227487174"><span class="_50f7">What&#039;s next for U.S. troops in Iraq?</span></a></div><div class="_1vx9">Publié par <a class="_2za_ _5p5v" href="/watch/ChinaGlobalTVNetwork/"><span class="_50f7">CGTN</span></a></div><div class="_1vx9"><span>7 268 vues</span></div></div></div><div class="_5bke" id="u_0_7a"></div></div><i class="_1jto _bsl _4ubd _3htz" id="u_0_5c"><input aria-label="Lire la vid&#xe9;o" type="button" class="accessible_elem" id="u_0_7b" /></i><span class="img _55ym _55yq _55yo _167h _4ubd _1hiu hidden_elem _360f _167h _3htz" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..." id="u_0_5d"></span><div class="_3htz _4ubd _1zmi" id="u_0_7c"></div><div class="_4ivm" id="u_0_7d"></div></div><div class="_2i84"><div id="u_0_7e"></div></div></div></div></div></div><div data-ft="&#123;&quot;tn&quot;:&quot;H&quot;&#125;" class="_3ekx _29_4"></div></span></div><div class="_42ef"><span class="_3c21"></span></div></div></div><div class="_2ezg"><div class="clearfix _3-8n"><div class="lfloat _ohe _50f8">7 268 vues</div><div class="rfloat _ohf"></div></div></div></div></div><div class="mtm _5pcm"><span class="_1nb_ fwn fcg" id="u_0_3b" data-ft="&#123;&quot;tn&quot;:&quot;C&quot;&#125;"><span class="fwb" data-ft="&#123;&quot;tn&quot;:&quot;k&quot;&#125;"><a href="https://www.facebook.com/ChinaGlobalTVNetwork/?hc_ref=ARR3We-6F19h-v2UHbTXLRUFIm9m1odVtfvLxYCW_ed0k6MlNk5vijh-SGBd0M2gXqQ&amp;fref=nf">CGTN</a></span></span><div class="_171_"><div class="_5pcp _5lel _2jyu _232_" id="feed_subtitle_3872550966119028:9:0" data-testid="story-subtitle"><span class="z_c3pyo1brp"><span class="fsm fwn fcg"><a href="/ChinaGlobalTVNetwork/videos/2658816227487174/" aria-label="Vid&#xe9;o, What&#039;s next for U.S. troops in Iraq?, Dur&#xe9;e&#xa0;: 1 minute, 8 secondes" ajaxify="/ChinaGlobalTVNetwork/videos/vb.565225540184937/2658816227487174/?type=3&amp;source=12" rel="theater" class="_5pcq" target=""><abbr title="07/01/2020 14:20" data-utime="1578435658" data-shorten="1" class="_5ptz"><span class="timestampContent">7 janvier, 14:20</span></abbr></a></span></span><span class="_6spk" role="presentation" aria-hidden="true"> · </span><a class="uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator _5pcq" aria-label="Public" role="img" href="#" data-hover="tooltip" data-tooltip-content="Public"><i class="lock img sp_RLFL6-1bUHS sx_b4ab0b"></i></a></div></div><div data-testid="post_message" class="mtm _5pco" data-ft="&#123;&quot;tn&quot;:&quot;K&quot;&#125;"><p>What are the consequences of American troops being voted out of Iraq? The panel of the Heat takes a look at that and what the outcome might be.</p></div></div></div></div></div></div><div></div></div></div><div><form rel="async" class="commentable_item" method="post" data-ft="&#123;&quot;tn&quot;:&quot;]&quot;&#125;" action="/ajax/ufi/modify.php" onsubmit="" id="u_0_9y"><input type="hidden" name="jazoest" value="2703" autocomplete="off" /><input type="hidden" name="lsd" value="AVpJ6Pvr" autocomplete="off" /><input type="hidden" autocomplete="off" name="ft_ent_identifier" value="2659739217454667" /><input type="hidden" autocomplete="off" name="data_only_response" value="1" /><div class="_7f6e"><div class="_5vsi"></div><noscript id="u_0_9x"></noscript></div></form></div></div></div></div></div></div><div class="clearfix uiMorePager stat_elem _52jv" id="www_pages_reaction_see_more_unitwww_pages_posts"><div><a ajaxify="/pages_reaction_units/more/?page_id=300653326696613&amp;cursor=%7B%22timeline_cursor%22%3A%22AQHRej0r_2BQDVSP-ZvnUBDE_uCSvJyVNbCcw_k11Bzb_aekpz5szMZs6S2k0yKV-1XqEX1dZuieF3sb_5zmEg9fHaW2AMV0O7uDsMLyahr-QjvBdsH2xCWXlqE-G7UHmxvq%22%2C%22timeline_section_cursor%22%3A%7B%7D%2C%22has_next_page%22%3Atrue%7D&amp;surface=www_pages_posts&amp;unit_count=8" href="#" rel="ajaxify" class="pam uiBoxLightblue uiMorePagerPrimary" role="button">Voir plus<i class="mhs mts arrow img sp_qtp6H98Uhz5 sx_912489"></i></a><span class="uiMorePagerLoader pam uiBoxLightblue"><span class="img _55ym _55yq _55yo _3-8h" aria-busy="true" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Chargement..."></span></span></div></div></div></div></div></div></div></div></div></div></div></div></div></div><div></div></div><div></div><span><img src="https://facebook.com/security/hsts-pixel.gif?c=3.2.5" width="0" height="0" style="display:none" /></span></div><div style="display:none"></div><script>new (require("ServerJS"))().handle({"instances":[["__inst_5b4d0c00_0_0",["Menu","XUIMenuWithSquareCorner","XUIMenuTheme"],[[],{"id":"u_0_1","behaviors":[{"__m":"XUIMenuWithSquareCorner"}],"theme":{"__m":"XUIMenuTheme"}}],2],["__inst_5b4d0c00_0_1",["Menu","MenuItem","__markup_3310c079_0_0","HTML","__markup_3310c079_0_1","__markup_3310c079_0_2","__markup_3310c079_0_3","XUIMenuWithSquareCorner","XUIMenuTheme"],[[{"value":"key_shortcuts","ctor":{"__m":"MenuItem"},"markup":{"__m":"__markup_3310c079_0_0"},"label":"Aide sur les raccourcis clavier...","title":"","className":null},{"href":"\/help\/accessibility","target":"_blank","value":"help_center","ctor":{"__m":"MenuItem"},"markup":{"__m":"__markup_3310c079_0_1"},"label":"Centre d\u2019aide \u00e0 l\u2019accessibilit\u00e9","title":"","className":null},{"href":"\/help\/contact\/accessibility","target":"_blank","value":"submit_feedback","ctor":{"__m":"MenuItem"},"markup":{"__m":"__markup_3310c079_0_2"},"label":"Donner votre avis","title":"","className":null},{"href":"\/accessibility","target":"_blank","value":"facebook_page","ctor":{"__m":"MenuItem"},"markup":{"__m":"__markup_3310c079_0_3"},"label":"Mises \u00e0 jour concernant l\u2019accessibilit\u00e9 de Facebook","title":"Mises \u00e0 jour concernant l\u2019accessibilit\u00e9 de Facebook","className":null}],{"id":"u_0_2","behaviors":[{"__m":"XUIMenuWithSquareCorner"}],"theme":{"__m":"XUIMenuTheme"}}],2],["__inst_e5ad243d_0_0",["PopoverMenu","__inst_1de146dc_0_1","__elem_ec77afbd_0_1","__inst_5b4d0c00_0_1"],[{"__m":"__inst_1de146dc_0_1"},{"__m":"__elem_ec77afbd_0_1"},{"__m":"__inst_5b4d0c00_0_1"},[]],2],["__inst_e5ad243d_0_1",["PopoverMenu","__inst_1de146dc_0_0","__elem_ec77afbd_0_0","__inst_5b4d0c00_0_0"],[{"__m":"__inst_1de146dc_0_0"},{"__m":"__elem_ec77afbd_0_0"},{"__m":"__inst_5b4d0c00_0_0"},[]],2],["__inst_1de146dc_0_0",["Popover","__elem_1de146dc_0_0","__elem_ec77afbd_0_0","ContextualLayerAutoFlip","ContextualDialogArrow"],[{"__m":"__elem_1de146dc_0_0"},{"__m":"__elem_ec77afbd_0_0"},[{"__m":"ContextualLayerAutoFlip"},{"__m":"ContextualDialogArrow"}],{"alignh":"left","position":"below"}],2],["__inst_1de146dc_0_1",["Popover","__elem_1de146dc_0_1","__elem_ec77afbd_0_1","ContextualLayerAutoFlip","ContextualDialogArrow"],[{"__m":"__elem_1de146dc_0_1"},{"__m":"__elem_ec77afbd_0_1"},[{"__m":"ContextualLayerAutoFlip"},{"__m":"ContextualDialogArrow"}],{"alignh":"right","position":"below"}],2],["__inst_d3d2500b_0_0",["XUISubNavigation","__elem_a588f507_0_9"],[{"__m":"__elem_a588f507_0_9"},null,false],1],["__inst_1c03405d_0_0",["MorePagerFetchOnScroll","__elem_1c03405d_0_0"],[{"__m":"__elem_1c03405d_0_0"},0,true],1],["__inst_8a751efa_0_0",["RelayAsyncDataPreloader","__inst_e9dd2b01_0_0"],[{"actorID":null,"asyncDataPreloader":{"__m":"__inst_e9dd2b01_0_0"},"pinnedStatus":"current_revision","queryID":"2969794079698848","queryVariables":{"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjY2MTg0NjMzNzI0Mzk1NQ==","focusCommentID":null,"isComet":false,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"scale":1,"useDefaultActor":true,"UFI2CommentsProvider_commentsKey":null}}],2],["__inst_8a751efa_0_1",["RelayAsyncDataPreloader","__inst_e9dd2b01_0_1"],[{"actorID":null,"asyncDataPreloader":{"__m":"__inst_e9dd2b01_0_1"},"pinnedStatus":"current_revision","queryID":"2969794079698848","queryVariables":{"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjY2MjEzNTMwNzIxNTA1OA==","focusCommentID":null,"isComet":false,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"scale":1,"useDefaultActor":true,"UFI2CommentsProvider_commentsKey":null}}],2],["__inst_8a751efa_0_2",["RelayAsyncDataPreloader","__inst_e9dd2b01_0_2"],[{"actorID":null,"asyncDataPreloader":{"__m":"__inst_e9dd2b01_0_2"},"pinnedStatus":"current_revision","queryID":"2969794079698848","queryVariables":{"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjY2MTA5NTMxNzMxOTA1Nw==","focusCommentID":null,"isComet":false,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"scale":1,"useDefaultActor":true,"UFI2CommentsProvider_commentsKey":null}}],2],["__inst_b7ee1bfc_0_0",["FBStoriesRing","__elem_2106b0cc_0_0"],[{"element":{"__m":"__elem_2106b0cc_0_0"},"profileId":"565225540184937","storyId":"1588989024520841"}],1],["__inst_b7ee1bfc_0_1",["FBStoriesRing","__elem_2106b0cc_0_1"],[{"element":{"__m":"__elem_2106b0cc_0_1"},"profileId":"565225540184937","storyId":"1588989024520841"}],1],["__inst_a648e52c_0_0",["VideoPlayerController","VideoPlayerHTML5Api","__inst_50478d2c_0_0","__inst_6d29ee41_0_0","__inst_2223e126_0_0","__inst_dbb8a0b1_0_0","__inst_96dc3ae7_0_0","__elem_a648e52c_0_0","__elem_50478d2c_0_0","__elem_a588f507_0_l"],[{"source":"inline","upstreamPlayerSource":null,"playerOrigin":null,"playerSuborigin":"inline","playerSuboriginDerived":null,"apiModule":{"__m":"VideoPlayerHTML5Api"},"apiConfig":{"__m":"__inst_50478d2c_0_0"},"projection":"flat","useInlineFallback":false,"isBroadcast":false,"isInstreamAd":false,"customLiveManifestUrlParams":null,"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","should_autoplay":false,"immediateplay_reason":null,"player_version":"pleasantville","ad_client_token":null,"chaining_token":null,"video_channel_id":"","video_list_id":null,"reaction_video_channel_type":null,"reaction_video_channel_subtype":null,"video_url":"\/cgtnamerica\/videos\/2810732512322033\/","video_urls":[["\/cgtnamerica\/videos\/2810732512322033\/"]],"video_path":"\/cgtnamerica\/videos\/2810732512322033\/","video_id":"2810732512322033","video_ids":[["2810732512322033"]],"components":[{"__m":"__inst_6d29ee41_0_0"},{"__m":"__inst_2223e126_0_0"},{"__m":"__inst_dbb8a0b1_0_0"},{"__m":"__inst_96dc3ae7_0_0"}],"alwaysShowCaptions":false,"subtitleBackgroundColor":"Black","subtitleBackgroundOpacity":45,"subtitleTextColor":"White","subtitleTextSize":100,"broadcasterOrigin":null,"offsettype":null,"offsetvalue":0,"shouldLogVideoViewability":false,"broadcastId":null,"isAdsPreview":false,"isInjectedAds":false,"isBroadcaster":null,"iframeEmbedReferrer":null},{"root_element":{"__m":"__elem_a648e52c_0_0"},"video_element":{"__m":"__elem_50478d2c_0_0"},"container_element":{"__m":"__elem_a588f507_0_l"}}],18],["__inst_6d29ee41_0_0",["VideoCover","__elem_6d29ee41_0_0","__elem_94c15385_0_0"],[{"__m":"__elem_6d29ee41_0_0"},[{"__m":"__elem_94c15385_0_0"}],null,{"showAfterFallback":true,"hiddenAfterFinish":false,"showWhileBuffering":false},false,0],2],["__inst_2223e126_0_0",["VideoNodeStaledScreen","__elem_2223e126_0_0"],[{"__m":"__elem_2223e126_0_0"}],2],["__inst_a176866d_0_0",["EmbeddedVideoPauseOverlay","__inst_a648e52c_0_0","__elem_a176866d_0_0","__elem_6555e0bc_0_0","__elem_a588f507_0_m"],[{"__m":"__inst_a648e52c_0_0"},{"__m":"__elem_a176866d_0_0"},{"__m":"__elem_6555e0bc_0_0"},{"__m":"__elem_a588f507_0_m"},null,null,null,null,{"showOnlyOnFullscreen":true,"showOnEndscreen":true}],1],["__inst_8c33f2cf_0_0",["VideoPlayButton","__inst_a648e52c_0_0","__elem_8c33f2cf_0_0"],[{"__m":"__inst_a648e52c_0_0"},{"__m":"__elem_8c33f2cf_0_0"},{"hiddenAfterFinish":false,"hiddenWhileVideoLoading":false,"hiddenWhileJSLoading":false,"hiddenWhilePaused":false,"hiddenInFallback":false,"spherical":false}],1],["__inst_492d06b7_0_0",["VideoSpinner","__inst_a648e52c_0_0","__elem_492d06b7_0_0"],[{"__m":"__inst_a648e52c_0_0"},{"__m":"__elem_492d06b7_0_0"}],1],["__inst_21a8c1d4_0_0",["VideoContextMenu","__inst_a648e52c_0_0","__elem_a588f507_0_o"],[{"__m":"__inst_a648e52c_0_0"},{"__m":"__elem_a588f507_0_o"},{"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/2810732512322033\/"}],1],["__inst_c5b6bd12_0_0",["VideoWithClickToTahoe","__inst_a648e52c_0_0"],[{"__m":"__inst_a648e52c_0_0"},"\/cgtnamerica\/videos\/2810732512322033\/","","channel_view_from_page_timeline",false,null,null,null,36,null,null,null,null],2],["__inst_dbb8a0b1_0_0",["VideoWithFallbackMode"],[{"fallbackTimeoutMs":10000}],2],["__inst_c523de71_0_0",["VideoWithSequentialAutoplay","__inst_a648e52c_0_0"],[{"__m":"__inst_a648e52c_0_0"},"0"],1],["__inst_1516ab8a_0_0",["VideoWithRapidFeedback","__inst_a648e52c_0_0"],[{"__m":"__inst_a648e52c_0_0"},"nonlive"],1],["__inst_74f26af1_0_0",["VideoPlayerRegistryComponent","__inst_a648e52c_0_0"],[{"__m":"__inst_a648e52c_0_0"}],1],["__inst_9f6501f1_0_0",["VideoWithFluentUFISupport","__inst_a648e52c_0_0"],[{"__m":"__inst_a648e52c_0_0"}],1],["__inst_8a4b6a17_0_0",["VideoWithVODBroadcast","__inst_a648e52c_0_0"],[{"__m":"__inst_a648e52c_0_0"}],1],["__inst_96dc3ae7_0_0",["VideoUpdateStateDirectory"],[],2],["__inst_e698bc89_0_0",["VideoVODCVCSubscription","__inst_a648e52c_0_0"],[{"__m":"__inst_a648e52c_0_0"}],1],["__inst_70689822_0_0",["VideoVODCVCFetching","__inst_a648e52c_0_0"],[{"__m":"__inst_a648e52c_0_0"}],1],["__inst_70dbca80_0_0",["VideoControls","__inst_a648e52c_0_0","__elem_70dbca80_0_0"],[{"__m":"__inst_a648e52c_0_0"},{"__m":"__elem_70dbca80_0_0"},{"hideOnEvents":{"finish":true,"pause":false,"autoplay":false},"showButtons":{"fullscreen":true,"casting":false,"permalink":false,"watchandscroll":false},"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/2810732512322033\/","redesign":false,"hidePlaybackControl":false,"showPlaybackRateControl":false,"hideRemainingTime":false,"hideSettings":false,"isLive":false,"isGamingVideo":false,"isLiveRewindEnabled":false,"isSphericalVideo":false,"showQualitySelector":true,"qualitySelectorMinStreams":2,"useTwoRows":false,"isCommentAttachment":false,"adBreaks":[],"adBreaksDisableReasons":[],"pollTimestamps":[],"showSpatialAudioNUX":false,"shouldShowWNSNUX":false,"gamesVideoClipButtonEnabled":false,"gamesVideoCreatorClippingGK":false,"gamesDefaultClipLengthInSec":60,"annotatedMomentsOfInterest":{},"showPlayButtonForLive":false,"videoClipInfo":null,"mutedSegments":[],"isWatchIconEligible":false,"shouldShowPermalinkButton":false,"shouldShowInlineCopyLinkOption":false}],1],["__inst_8a751efa_0_3",["RelayAsyncDataPreloader","__inst_e9dd2b01_0_3"],[{"actorID":null,"asyncDataPreloader":{"__m":"__inst_e9dd2b01_0_3"},"pinnedStatus":"current_revision","queryID":"2969794079698848","queryVariables":{"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6NTc1NTUxMjA2NjE0OTAx","focusCommentID":null,"isComet":false,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"scale":1,"useDefaultActor":true,"UFI2CommentsProvider_commentsKey":null}}],2],["__inst_a648e52c_0_1",["VideoPlayerController","VideoPlayerHTML5Api","__inst_50478d2c_0_1","__inst_6d29ee41_0_1","__inst_2223e126_0_1","__inst_dbb8a0b1_0_1","__inst_96dc3ae7_0_1","__elem_a648e52c_0_1","__elem_50478d2c_0_1","__elem_a588f507_0_s"],[{"source":"inline","upstreamPlayerSource":null,"playerOrigin":null,"playerSuborigin":"inline","playerSuboriginDerived":null,"apiModule":{"__m":"VideoPlayerHTML5Api"},"apiConfig":{"__m":"__inst_50478d2c_0_1"},"projection":"flat","useInlineFallback":false,"isBroadcast":false,"isInstreamAd":false,"customLiveManifestUrlParams":null,"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","should_autoplay":false,"immediateplay_reason":null,"player_version":"pleasantville","ad_client_token":null,"chaining_token":null,"video_channel_id":"","video_list_id":null,"reaction_video_channel_type":null,"reaction_video_channel_subtype":null,"video_url":"\/cgtnamerica\/videos\/575551206614901\/","video_urls":[["\/cgtnamerica\/videos\/575551206614901\/"]],"video_path":"\/cgtnamerica\/videos\/575551206614901\/","video_id":"575551206614901","video_ids":[["575551206614901"]],"components":[{"__m":"__inst_6d29ee41_0_1"},{"__m":"__inst_2223e126_0_1"},{"__m":"__inst_dbb8a0b1_0_1"},{"__m":"__inst_96dc3ae7_0_1"}],"alwaysShowCaptions":false,"subtitleBackgroundColor":"Black","subtitleBackgroundOpacity":45,"subtitleTextColor":"White","subtitleTextSize":100,"broadcasterOrigin":null,"offsettype":null,"offsetvalue":0,"shouldLogVideoViewability":false,"broadcastId":null,"isAdsPreview":false,"isInjectedAds":false,"isBroadcaster":null,"iframeEmbedReferrer":null},{"root_element":{"__m":"__elem_a648e52c_0_1"},"video_element":{"__m":"__elem_50478d2c_0_1"},"container_element":{"__m":"__elem_a588f507_0_s"}}],18],["__inst_6d29ee41_0_1",["VideoCover","__elem_6d29ee41_0_1","__elem_94c15385_0_1"],[{"__m":"__elem_6d29ee41_0_1"},[{"__m":"__elem_94c15385_0_1"}],null,{"showAfterFallback":true,"hiddenAfterFinish":false,"showWhileBuffering":false},false,0],2],["__inst_2223e126_0_1",["VideoNodeStaledScreen","__elem_2223e126_0_1"],[{"__m":"__elem_2223e126_0_1"}],2],["__inst_a176866d_0_1",["EmbeddedVideoPauseOverlay","__inst_a648e52c_0_1","__elem_a176866d_0_1","__elem_6555e0bc_0_1","__elem_a588f507_0_t"],[{"__m":"__inst_a648e52c_0_1"},{"__m":"__elem_a176866d_0_1"},{"__m":"__elem_6555e0bc_0_1"},{"__m":"__elem_a588f507_0_t"},null,null,null,null,{"showOnlyOnFullscreen":true,"showOnEndscreen":true}],1],["__inst_8c33f2cf_0_1",["VideoPlayButton","__inst_a648e52c_0_1","__elem_8c33f2cf_0_1"],[{"__m":"__inst_a648e52c_0_1"},{"__m":"__elem_8c33f2cf_0_1"},{"hiddenAfterFinish":false,"hiddenWhileVideoLoading":false,"hiddenWhileJSLoading":false,"hiddenWhilePaused":false,"hiddenInFallback":false,"spherical":false}],1],["__inst_492d06b7_0_1",["VideoSpinner","__inst_a648e52c_0_1","__elem_492d06b7_0_2"],[{"__m":"__inst_a648e52c_0_1"},{"__m":"__elem_492d06b7_0_2"}],1],["__inst_21a8c1d4_0_1",["VideoContextMenu","__inst_a648e52c_0_1","__elem_a588f507_0_v"],[{"__m":"__inst_a648e52c_0_1"},{"__m":"__elem_a588f507_0_v"},{"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/575551206614901\/"}],1],["__inst_c5b6bd12_0_1",["VideoWithClickToTahoe","__inst_a648e52c_0_1"],[{"__m":"__inst_a648e52c_0_1"},"\/cgtnamerica\/videos\/575551206614901\/","","channel_view_from_page_timeline",false,null,null,null,36,null,null,null,null],2],["__inst_dbb8a0b1_0_1",["VideoWithFallbackMode"],[{"fallbackTimeoutMs":10000}],2],["__inst_c523de71_0_1",["VideoWithSequentialAutoplay","__inst_a648e52c_0_1"],[{"__m":"__inst_a648e52c_0_1"},"0"],1],["__inst_1516ab8a_0_1",["VideoWithRapidFeedback","__inst_a648e52c_0_1"],[{"__m":"__inst_a648e52c_0_1"},"nonlive"],1],["__inst_74f26af1_0_1",["VideoPlayerRegistryComponent","__inst_a648e52c_0_1"],[{"__m":"__inst_a648e52c_0_1"}],1],["__inst_9f6501f1_0_1",["VideoWithFluentUFISupport","__inst_a648e52c_0_1"],[{"__m":"__inst_a648e52c_0_1"}],1],["__inst_8a4b6a17_0_1",["VideoWithVODBroadcast","__inst_a648e52c_0_1"],[{"__m":"__inst_a648e52c_0_1"}],1],["__inst_96dc3ae7_0_1",["VideoUpdateStateDirectory"],[],2],["__inst_e698bc89_0_1",["VideoVODCVCSubscription","__inst_a648e52c_0_1"],[{"__m":"__inst_a648e52c_0_1"}],1],["__inst_70689822_0_1",["VideoVODCVCFetching","__inst_a648e52c_0_1"],[{"__m":"__inst_a648e52c_0_1"}],1],["__inst_70dbca80_0_1",["VideoControls","__inst_a648e52c_0_1","__elem_70dbca80_0_1"],[{"__m":"__inst_a648e52c_0_1"},{"__m":"__elem_70dbca80_0_1"},{"hideOnEvents":{"finish":true,"pause":false,"autoplay":false},"showButtons":{"fullscreen":true,"casting":false,"permalink":false,"watchandscroll":false},"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/575551206614901\/","redesign":false,"hidePlaybackControl":false,"showPlaybackRateControl":false,"hideRemainingTime":false,"hideSettings":false,"isLive":false,"isGamingVideo":false,"isLiveRewindEnabled":false,"isSphericalVideo":false,"showQualitySelector":true,"qualitySelectorMinStreams":2,"useTwoRows":false,"isCommentAttachment":false,"adBreaks":[],"adBreaksDisableReasons":[],"pollTimestamps":[],"showSpatialAudioNUX":false,"shouldShowWNSNUX":false,"gamesVideoClipButtonEnabled":false,"gamesVideoCreatorClippingGK":false,"gamesDefaultClipLengthInSec":60,"annotatedMomentsOfInterest":{},"showPlayButtonForLive":false,"videoClipInfo":null,"mutedSegments":[],"isWatchIconEligible":false,"shouldShowPermalinkButton":false,"shouldShowInlineCopyLinkOption":true}],1],["__inst_8a751efa_0_4",["RelayAsyncDataPreloader","__inst_e9dd2b01_0_4"],[{"actorID":null,"asyncDataPreloader":{"__m":"__inst_e9dd2b01_0_4"},"pinnedStatus":"current_revision","queryID":"2969794079698848","queryVariables":{"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6NDczMTE3ODMzNjA2MjI0","focusCommentID":null,"isComet":false,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"scale":1,"useDefaultActor":true,"UFI2CommentsProvider_commentsKey":null}}],2],["__inst_8a751efa_0_5",["RelayAsyncDataPreloader","__inst_e9dd2b01_0_5"],[{"actorID":null,"asyncDataPreloader":{"__m":"__inst_e9dd2b01_0_5"},"pinnedStatus":"current_revision","queryID":"2969794079698848","queryVariables":{"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjgxMDczMjUxMjMyMjAzMw==","focusCommentID":null,"isComet":false,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"scale":1,"useDefaultActor":true,"UFI2CommentsProvider_commentsKey":null}}],2],["__inst_8a751efa_0_6",["RelayAsyncDataPreloader","__inst_e9dd2b01_0_6"],[{"actorID":null,"asyncDataPreloader":{"__m":"__inst_e9dd2b01_0_6"},"pinnedStatus":"current_revision","queryID":"2969794079698848","queryVariables":{"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjY2MTMzOTU0MDYyNzk2OA==","focusCommentID":null,"isComet":false,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"scale":1,"useDefaultActor":true,"UFI2CommentsProvider_commentsKey":null}}],2],["__inst_57d19858_0_0",["VideoScrubberPreviewComponent","__inst_a648e52c_0_0"],[{"__m":"__inst_a648e52c_0_0"},{"timeIntervalBetweenImages":0,"previewScrubberWidth":0,"previewScrubberHeight":0,"maxImagesPerSprite":0,"imagesPerRow":0,"hasPreviewThumbnails":false,"spriteIndexToURIMap":{"1":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t15.6481-10\/69282145_1033919690276408_6650292301308362752_n.jpg?_nc_cat=108&_nc_ohc=K8IV0OpPdbMAQnKfeQAuRfo0DZnDQcCOGRPr5iTaCqPy_7ZAUjxsXqptg&_nc_ht=scontent-cdg2-1.xx&oh=76616334eedf957f03777cd5270284e0&oe=5EAFF4B1"},"stereoMode":null,"scrubberVideoURI":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82587901_457216251627316_7245445502903255040_n.mp4?_nc_cat=102&_nc_ohc=93yoQWnIDmwAQmH1kSfRIi3PCBrFgu1DgMk8vEhR1oDEJDn7KPMKEOupg&_nc_ht=video-cdg2-1.xx&oh=2bb3d459c560c37adb12f621cbf42749&oe=5E173ED0","useScrubberVideo":false}],1],["__inst_a648e52c_0_2",["VideoPlayerController","VideoPlayerHTML5Api","__inst_50478d2c_0_2","__inst_6d29ee41_0_2","__inst_2223e126_0_2","__inst_dbb8a0b1_0_2","__inst_96dc3ae7_0_2","__elem_a648e52c_0_2","__elem_50478d2c_0_2","__elem_a588f507_0_10"],[{"source":"inline","upstreamPlayerSource":null,"playerOrigin":null,"playerSuborigin":"inline","playerSuboriginDerived":null,"apiModule":{"__m":"VideoPlayerHTML5Api"},"apiConfig":{"__m":"__inst_50478d2c_0_2"},"projection":"flat","useInlineFallback":false,"isBroadcast":false,"isInstreamAd":false,"customLiveManifestUrlParams":null,"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","should_autoplay":false,"immediateplay_reason":null,"player_version":"pleasantville","ad_client_token":null,"chaining_token":null,"video_channel_id":"","video_list_id":null,"reaction_video_channel_type":null,"reaction_video_channel_subtype":null,"video_url":"\/cgtnamerica\/videos\/473117833606224\/","video_urls":[["\/cgtnamerica\/videos\/473117833606224\/"]],"video_path":"\/cgtnamerica\/videos\/473117833606224\/","video_id":"473117833606224","video_ids":[["473117833606224"]],"components":[{"__m":"__inst_6d29ee41_0_2"},{"__m":"__inst_2223e126_0_2"},{"__m":"__inst_dbb8a0b1_0_2"},{"__m":"__inst_96dc3ae7_0_2"}],"alwaysShowCaptions":false,"subtitleBackgroundColor":"Black","subtitleBackgroundOpacity":45,"subtitleTextColor":"White","subtitleTextSize":100,"broadcasterOrigin":null,"offsettype":null,"offsetvalue":0,"shouldLogVideoViewability":false,"broadcastId":null,"isAdsPreview":false,"isInjectedAds":false,"isBroadcaster":null,"iframeEmbedReferrer":null},{"root_element":{"__m":"__elem_a648e52c_0_2"},"video_element":{"__m":"__elem_50478d2c_0_2"},"container_element":{"__m":"__elem_a588f507_0_10"}}],18],["__inst_6d29ee41_0_2",["VideoCover","__elem_6d29ee41_0_2","__elem_94c15385_0_2"],[{"__m":"__elem_6d29ee41_0_2"},[{"__m":"__elem_94c15385_0_2"}],null,{"showAfterFallback":true,"hiddenAfterFinish":false,"showWhileBuffering":false},false,0],2],["__inst_2223e126_0_2",["VideoNodeStaledScreen","__elem_2223e126_0_2"],[{"__m":"__elem_2223e126_0_2"}],2],["__inst_a176866d_0_2",["EmbeddedVideoPauseOverlay","__inst_a648e52c_0_2","__elem_a176866d_0_2","__elem_6555e0bc_0_2","__elem_a588f507_0_11"],[{"__m":"__inst_a648e52c_0_2"},{"__m":"__elem_a176866d_0_2"},{"__m":"__elem_6555e0bc_0_2"},{"__m":"__elem_a588f507_0_11"},null,null,null,null,{"showOnlyOnFullscreen":true,"showOnEndscreen":true}],1],["__inst_8c33f2cf_0_2",["VideoPlayButton","__inst_a648e52c_0_2","__elem_8c33f2cf_0_2"],[{"__m":"__inst_a648e52c_0_2"},{"__m":"__elem_8c33f2cf_0_2"},{"hiddenAfterFinish":false,"hiddenWhileVideoLoading":false,"hiddenWhileJSLoading":false,"hiddenWhilePaused":false,"hiddenInFallback":false,"spherical":false}],1],["__inst_492d06b7_0_2",["VideoSpinner","__inst_a648e52c_0_2","__elem_492d06b7_0_3"],[{"__m":"__inst_a648e52c_0_2"},{"__m":"__elem_492d06b7_0_3"}],1],["__inst_21a8c1d4_0_2",["VideoContextMenu","__inst_a648e52c_0_2","__elem_a588f507_0_13"],[{"__m":"__inst_a648e52c_0_2"},{"__m":"__elem_a588f507_0_13"},{"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/473117833606224\/"}],1],["__inst_c5b6bd12_0_2",["VideoWithClickToTahoe","__inst_a648e52c_0_2"],[{"__m":"__inst_a648e52c_0_2"},"\/cgtnamerica\/videos\/473117833606224\/","","channel_view_from_page_timeline",false,null,null,null,36,null,null,null,null],2],["__inst_dbb8a0b1_0_2",["VideoWithFallbackMode"],[{"fallbackTimeoutMs":10000}],2],["__inst_c523de71_0_2",["VideoWithSequentialAutoplay","__inst_a648e52c_0_2"],[{"__m":"__inst_a648e52c_0_2"},"0"],1],["__inst_1516ab8a_0_2",["VideoWithRapidFeedback","__inst_a648e52c_0_2"],[{"__m":"__inst_a648e52c_0_2"},"nonlive"],1],["__inst_74f26af1_0_2",["VideoPlayerRegistryComponent","__inst_a648e52c_0_2"],[{"__m":"__inst_a648e52c_0_2"}],1],["__inst_9f6501f1_0_2",["VideoWithFluentUFISupport","__inst_a648e52c_0_2"],[{"__m":"__inst_a648e52c_0_2"}],1],["__inst_8a4b6a17_0_2",["VideoWithVODBroadcast","__inst_a648e52c_0_2"],[{"__m":"__inst_a648e52c_0_2"}],1],["__inst_96dc3ae7_0_2",["VideoUpdateStateDirectory"],[],2],["__inst_e698bc89_0_2",["VideoVODCVCSubscription","__inst_a648e52c_0_2"],[{"__m":"__inst_a648e52c_0_2"}],1],["__inst_70689822_0_2",["VideoVODCVCFetching","__inst_a648e52c_0_2"],[{"__m":"__inst_a648e52c_0_2"}],1],["__inst_70dbca80_0_2",["VideoControls","__inst_a648e52c_0_2","__elem_70dbca80_0_2"],[{"__m":"__inst_a648e52c_0_2"},{"__m":"__elem_70dbca80_0_2"},{"hideOnEvents":{"finish":true,"pause":false,"autoplay":false},"showButtons":{"fullscreen":true,"casting":false,"permalink":false,"watchandscroll":false},"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/473117833606224\/","redesign":false,"hidePlaybackControl":false,"showPlaybackRateControl":false,"hideRemainingTime":false,"hideSettings":false,"isLive":false,"isGamingVideo":false,"isLiveRewindEnabled":false,"isSphericalVideo":false,"showQualitySelector":true,"qualitySelectorMinStreams":2,"useTwoRows":false,"isCommentAttachment":false,"adBreaks":[],"adBreaksDisableReasons":[],"pollTimestamps":[],"showSpatialAudioNUX":false,"shouldShowWNSNUX":false,"gamesVideoClipButtonEnabled":false,"gamesVideoCreatorClippingGK":false,"gamesDefaultClipLengthInSec":60,"annotatedMomentsOfInterest":{},"showPlayButtonForLive":false,"videoClipInfo":null,"mutedSegments":[],"isWatchIconEligible":false,"shouldShowPermalinkButton":false,"shouldShowInlineCopyLinkOption":true}],1],["__inst_a648e52c_0_3",["VideoPlayerController","VideoPlayerHTML5Api","__inst_50478d2c_0_3","__inst_6d29ee41_0_6","__inst_2223e126_0_6","__inst_dbb8a0b1_0_6","__inst_96dc3ae7_0_6","__elem_a648e52c_0_3","__elem_50478d2c_0_6","__elem_a588f507_0_1u"],[{"source":"inline","upstreamPlayerSource":null,"playerOrigin":null,"playerSuborigin":"inline","playerSuboriginDerived":null,"apiModule":{"__m":"VideoPlayerHTML5Api"},"apiConfig":{"__m":"__inst_50478d2c_0_3"},"projection":"flat","useInlineFallback":false,"isBroadcast":true,"isInstreamAd":false,"customLiveManifestUrlParams":null,"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","should_autoplay":false,"immediateplay_reason":null,"player_version":"pleasantville","ad_client_token":null,"chaining_token":null,"video_channel_id":"","video_list_id":null,"reaction_video_channel_type":null,"reaction_video_channel_subtype":null,"video_url":"\/ChinaGlobalTVNetwork\/videos\/2561909697364016\/","video_urls":[["\/ChinaGlobalTVNetwork\/videos\/2561909697364016\/"]],"video_path":"\/ChinaGlobalTVNetwork\/videos\/2561909697364016\/","video_id":"2561909697364016","video_ids":[["2561909697364016"]],"components":[{"__m":"__inst_6d29ee41_0_6"},{"__m":"__inst_2223e126_0_6"},{"__m":"__inst_dbb8a0b1_0_6"},{"__m":"__inst_96dc3ae7_0_6"}],"alwaysShowCaptions":false,"subtitleBackgroundColor":"Black","subtitleBackgroundOpacity":45,"subtitleTextColor":"White","subtitleTextSize":100,"broadcasterOrigin":"lla2","offsettype":null,"offsetvalue":0,"shouldLogVideoViewability":false,"broadcastId":"3875219079185550","isAdsPreview":false,"isInjectedAds":false,"isBroadcaster":false,"iframeEmbedReferrer":null},{"root_element":{"__m":"__elem_a648e52c_0_3"},"video_element":{"__m":"__elem_50478d2c_0_6"},"container_element":{"__m":"__elem_a588f507_0_1u"}}],18],["__inst_a648e52c_0_4",["VideoPlayerController","VideoPlayerHTML5Api","__inst_50478d2c_0_4","__inst_6d29ee41_0_3","__inst_2223e126_0_3","__inst_dbb8a0b1_0_3","__inst_96dc3ae7_0_3","__elem_a648e52c_0_4","__elem_50478d2c_0_3","__elem_a588f507_0_1b"],[{"source":"inline","upstreamPlayerSource":null,"playerOrigin":null,"playerSuborigin":"inline","playerSuboriginDerived":null,"apiModule":{"__m":"VideoPlayerHTML5Api"},"apiConfig":{"__m":"__inst_50478d2c_0_4"},"projection":"flat","useInlineFallback":false,"isBroadcast":false,"isInstreamAd":false,"customLiveManifestUrlParams":null,"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","should_autoplay":false,"immediateplay_reason":null,"player_version":"pleasantville","ad_client_token":null,"chaining_token":null,"video_channel_id":"","video_list_id":null,"reaction_video_channel_type":null,"reaction_video_channel_subtype":null,"video_url":"\/cgtnamerica\/videos\/2525520257557521\/","video_urls":[["\/cgtnamerica\/videos\/2525520257557521\/"]],"video_path":"\/cgtnamerica\/videos\/2525520257557521\/","video_id":"2525520257557521","video_ids":[["2525520257557521"]],"components":[{"__m":"__inst_6d29ee41_0_3"},{"__m":"__inst_2223e126_0_3"},{"__m":"__inst_dbb8a0b1_0_3"},{"__m":"__inst_96dc3ae7_0_3"}],"alwaysShowCaptions":false,"subtitleBackgroundColor":"Black","subtitleBackgroundOpacity":45,"subtitleTextColor":"White","subtitleTextSize":100,"broadcasterOrigin":null,"offsettype":null,"offsetvalue":0,"shouldLogVideoViewability":false,"broadcastId":null,"isAdsPreview":false,"isInjectedAds":false,"isBroadcaster":null,"iframeEmbedReferrer":null},{"root_element":{"__m":"__elem_a648e52c_0_4"},"video_element":{"__m":"__elem_50478d2c_0_3"},"container_element":{"__m":"__elem_a588f507_0_1b"}}],18],["__inst_6d29ee41_0_3",["VideoCover","__elem_6d29ee41_0_3","__elem_94c15385_0_3"],[{"__m":"__elem_6d29ee41_0_3"},[{"__m":"__elem_94c15385_0_3"}],null,{"showAfterFallback":true,"hiddenAfterFinish":false,"showWhileBuffering":false},false,0],2],["__inst_2223e126_0_3",["VideoNodeStaledScreen","__elem_2223e126_0_3"],[{"__m":"__elem_2223e126_0_3"}],2],["__inst_a176866d_0_3",["EmbeddedVideoPauseOverlay","__inst_a648e52c_0_4","__elem_a176866d_0_3","__elem_6555e0bc_0_3","__elem_a588f507_0_1c"],[{"__m":"__inst_a648e52c_0_4"},{"__m":"__elem_a176866d_0_3"},{"__m":"__elem_6555e0bc_0_3"},{"__m":"__elem_a588f507_0_1c"},null,null,null,null,{"showOnlyOnFullscreen":true,"showOnEndscreen":true}],1],["__inst_8c33f2cf_0_3",["VideoPlayButton","__inst_a648e52c_0_4","__elem_8c33f2cf_0_3"],[{"__m":"__inst_a648e52c_0_4"},{"__m":"__elem_8c33f2cf_0_3"},{"hiddenAfterFinish":false,"hiddenWhileVideoLoading":false,"hiddenWhileJSLoading":false,"hiddenWhilePaused":false,"hiddenInFallback":false,"spherical":false}],1],["__inst_492d06b7_0_3",["VideoSpinner","__inst_a648e52c_0_4","__elem_492d06b7_0_4"],[{"__m":"__inst_a648e52c_0_4"},{"__m":"__elem_492d06b7_0_4"}],1],["__inst_21a8c1d4_0_3",["VideoContextMenu","__inst_a648e52c_0_4","__elem_a588f507_0_1e"],[{"__m":"__inst_a648e52c_0_4"},{"__m":"__elem_a588f507_0_1e"},{"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/2525520257557521\/"}],1],["__inst_c5b6bd12_0_3",["VideoWithClickToTahoe","__inst_a648e52c_0_4"],[{"__m":"__inst_a648e52c_0_4"},"\/cgtnamerica\/videos\/2525520257557521\/","","channel_view_from_page_timeline",false,null,null,null,36,null,null,null,null],2],["__inst_dbb8a0b1_0_3",["VideoWithFallbackMode"],[{"fallbackTimeoutMs":10000}],2],["__inst_c523de71_0_3",["VideoWithSequentialAutoplay","__inst_a648e52c_0_4"],[{"__m":"__inst_a648e52c_0_4"},"0"],1],["__inst_1516ab8a_0_3",["VideoWithRapidFeedback","__inst_a648e52c_0_4"],[{"__m":"__inst_a648e52c_0_4"},"nonlive"],1],["__inst_74f26af1_0_3",["VideoPlayerRegistryComponent","__inst_a648e52c_0_4"],[{"__m":"__inst_a648e52c_0_4"}],1],["__inst_9f6501f1_0_3",["VideoWithFluentUFISupport","__inst_a648e52c_0_4"],[{"__m":"__inst_a648e52c_0_4"}],1],["__inst_8a4b6a17_0_3",["VideoWithVODBroadcast","__inst_a648e52c_0_4"],[{"__m":"__inst_a648e52c_0_4"}],1],["__inst_96dc3ae7_0_3",["VideoUpdateStateDirectory"],[],2],["__inst_e698bc89_0_3",["VideoVODCVCSubscription","__inst_a648e52c_0_4"],[{"__m":"__inst_a648e52c_0_4"}],1],["__inst_70689822_0_3",["VideoVODCVCFetching","__inst_a648e52c_0_4"],[{"__m":"__inst_a648e52c_0_4"}],1],["__inst_70dbca80_0_3",["VideoControls","__inst_a648e52c_0_4","__elem_70dbca80_0_3"],[{"__m":"__inst_a648e52c_0_4"},{"__m":"__elem_70dbca80_0_3"},{"hideOnEvents":{"finish":true,"pause":false,"autoplay":false},"showButtons":{"fullscreen":true,"casting":false,"permalink":false,"watchandscroll":false},"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/2525520257557521\/","redesign":false,"hidePlaybackControl":false,"showPlaybackRateControl":false,"hideRemainingTime":false,"hideSettings":false,"isLive":false,"isGamingVideo":false,"isLiveRewindEnabled":false,"isSphericalVideo":false,"showQualitySelector":true,"qualitySelectorMinStreams":2,"useTwoRows":false,"isCommentAttachment":false,"adBreaks":[],"adBreaksDisableReasons":[],"pollTimestamps":[],"showSpatialAudioNUX":false,"shouldShowWNSNUX":false,"gamesVideoClipButtonEnabled":false,"gamesVideoCreatorClippingGK":false,"gamesDefaultClipLengthInSec":60,"annotatedMomentsOfInterest":{},"showPlayButtonForLive":false,"videoClipInfo":null,"mutedSegments":[],"isWatchIconEligible":false,"shouldShowPermalinkButton":false,"shouldShowInlineCopyLinkOption":true}],1],["__inst_57d19858_0_1",["VideoScrubberPreviewComponent","__inst_a648e52c_0_1"],[{"__m":"__inst_a648e52c_0_1"},{"timeIntervalBetweenImages":0,"previewScrubberWidth":0,"previewScrubberHeight":0,"maxImagesPerSprite":0,"imagesPerRow":0,"hasPreviewThumbnails":false,"spriteIndexToURIMap":{"1":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t15.6481-10\/74519996_1314752825376537_2099364732791160832_n.jpg?_nc_cat=103&_nc_ohc=mrcWKh71ISQAQnY5ReSVtB3Cyj5hYYCIpdMPrOQsS9dLvY2RQqdBF-xfA&_nc_ht=scontent-cdg2-1.xx&oh=b24de84d6636cd6fa28718f0a0402d75&oe=5EAECDC3"},"stereoMode":null,"scrubberVideoURI":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82497262_590457415079249_2785878064934944768_n.mp4?_nc_cat=104&_nc_ohc=eApKewINxx0AQk1zevEpAczY5kWILaipr8XML5R73_xXAMV6b-SZtl99g&_nc_ht=video-cdg2-1.xx&oh=e89f242be975231dfc15cf63aa7a4a91&oe=5E1724A7","useScrubberVideo":false}],1],["__inst_a648e52c_0_5",["VideoPlayerController","VideoPlayerHTML5Api","__inst_50478d2c_0_5","__inst_6d29ee41_0_4","__inst_2223e126_0_4","__inst_dbb8a0b1_0_4","__inst_96dc3ae7_0_4","__elem_a648e52c_0_5","__elem_50478d2c_0_4","__elem_a588f507_0_1j"],[{"source":"inline","upstreamPlayerSource":null,"playerOrigin":null,"playerSuborigin":"inline","playerSuboriginDerived":null,"apiModule":{"__m":"VideoPlayerHTML5Api"},"apiConfig":{"__m":"__inst_50478d2c_0_5"},"projection":"flat","useInlineFallback":false,"isBroadcast":false,"isInstreamAd":false,"customLiveManifestUrlParams":null,"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","should_autoplay":false,"immediateplay_reason":null,"player_version":"pleasantville","ad_client_token":null,"chaining_token":null,"video_channel_id":"","video_list_id":null,"reaction_video_channel_type":null,"reaction_video_channel_subtype":null,"video_url":"\/ChinaGlobalTVNetwork\/videos\/2658816227487174\/","video_urls":[["\/ChinaGlobalTVNetwork\/videos\/2658816227487174\/"]],"video_path":"\/ChinaGlobalTVNetwork\/videos\/2658816227487174\/","video_id":"2658816227487174","video_ids":[["2658816227487174"]],"components":[{"__m":"__inst_6d29ee41_0_4"},{"__m":"__inst_2223e126_0_4"},{"__m":"__inst_dbb8a0b1_0_4"},{"__m":"__inst_96dc3ae7_0_4"}],"alwaysShowCaptions":false,"subtitleBackgroundColor":"Black","subtitleBackgroundOpacity":45,"subtitleTextColor":"White","subtitleTextSize":100,"broadcasterOrigin":null,"offsettype":null,"offsetvalue":0,"shouldLogVideoViewability":false,"broadcastId":null,"isAdsPreview":false,"isInjectedAds":false,"isBroadcaster":null,"iframeEmbedReferrer":null},{"root_element":{"__m":"__elem_a648e52c_0_5"},"video_element":{"__m":"__elem_50478d2c_0_4"},"container_element":{"__m":"__elem_a588f507_0_1j"}}],17],["__inst_6d29ee41_0_4",["VideoCover","__elem_6d29ee41_0_4","__elem_94c15385_0_4"],[{"__m":"__elem_6d29ee41_0_4"},[{"__m":"__elem_94c15385_0_4"}],null,{"showAfterFallback":true,"hiddenAfterFinish":false,"showWhileBuffering":false},false,0],2],["__inst_2223e126_0_4",["VideoNodeStaledScreen","__elem_2223e126_0_4"],[{"__m":"__elem_2223e126_0_4"}],2],["__inst_a176866d_0_4",["EmbeddedVideoPauseOverlay","__inst_a648e52c_0_5","__elem_a176866d_0_4","__elem_6555e0bc_0_4","__elem_a588f507_0_1k"],[{"__m":"__inst_a648e52c_0_5"},{"__m":"__elem_a176866d_0_4"},{"__m":"__elem_6555e0bc_0_4"},{"__m":"__elem_a588f507_0_1k"},null,null,null,null,{"showOnlyOnFullscreen":true,"showOnEndscreen":true}],1],["__inst_8c33f2cf_0_4",["VideoPlayButton","__inst_a648e52c_0_5","__elem_8c33f2cf_0_4"],[{"__m":"__inst_a648e52c_0_5"},{"__m":"__elem_8c33f2cf_0_4"},{"hiddenAfterFinish":false,"hiddenWhileVideoLoading":false,"hiddenWhileJSLoading":false,"hiddenWhilePaused":false,"hiddenInFallback":false,"spherical":false}],1],["__inst_492d06b7_0_4",["VideoSpinner","__inst_a648e52c_0_5","__elem_492d06b7_0_5"],[{"__m":"__inst_a648e52c_0_5"},{"__m":"__elem_492d06b7_0_5"}],1],["__inst_21a8c1d4_0_4",["VideoContextMenu","__inst_a648e52c_0_5","__elem_a588f507_0_1m"],[{"__m":"__inst_a648e52c_0_5"},{"__m":"__elem_a588f507_0_1m"},{"permalinkURL":"https:\/\/www.facebook.com\/ChinaGlobalTVNetwork\/videos\/2658816227487174\/"}],1],["__inst_c5b6bd12_0_4",["VideoWithClickToTahoe","__inst_a648e52c_0_5"],[{"__m":"__inst_a648e52c_0_5"},"\/ChinaGlobalTVNetwork\/videos\/2658816227487174\/UzpfSTMwMDY1MzMyNjY5NjYxMzoyNjU5NzM5MjE3NDU0NjY3\/","","channel_view_from_page_timeline",false,null,null,"UzpfSTMwMDY1MzMyNjY5NjYxMzoyNjU5NzM5MjE3NDU0NjY3",36,null,null,null,null],2],["__inst_dbb8a0b1_0_4",["VideoWithFallbackMode"],[{"fallbackTimeoutMs":10000}],2],["__inst_c523de71_0_4",["VideoWithSequentialAutoplay","__inst_a648e52c_0_5"],[{"__m":"__inst_a648e52c_0_5"},"0"],1],["__inst_1516ab8a_0_4",["VideoWithRapidFeedback","__inst_a648e52c_0_5"],[{"__m":"__inst_a648e52c_0_5"},"nonlive"],1],["__inst_74f26af1_0_4",["VideoPlayerRegistryComponent","__inst_a648e52c_0_5"],[{"__m":"__inst_a648e52c_0_5"}],1],["__inst_9f6501f1_0_4",["VideoWithFluentUFISupport","__inst_a648e52c_0_5"],[{"__m":"__inst_a648e52c_0_5"}],1],["__inst_96dc3ae7_0_4",["VideoUpdateStateDirectory"],[],2],["__inst_e698bc89_0_4",["VideoVODCVCSubscription","__inst_a648e52c_0_5"],[{"__m":"__inst_a648e52c_0_5"}],1],["__inst_70689822_0_4",["VideoVODCVCFetching","__inst_a648e52c_0_5"],[{"__m":"__inst_a648e52c_0_5"}],1],["__inst_a648e52c_0_6",["VideoPlayerController","VideoPlayerHTML5Api","__inst_50478d2c_0_6","__inst_6d29ee41_0_5","__inst_2223e126_0_5","__inst_dbb8a0b1_0_5","__inst_96dc3ae7_0_5","__elem_a648e52c_0_6","__elem_50478d2c_0_5","__elem_a588f507_0_1p"],[{"source":"inline","upstreamPlayerSource":null,"playerOrigin":null,"playerSuborigin":"inline","playerSuboriginDerived":null,"apiModule":{"__m":"VideoPlayerHTML5Api"},"apiConfig":{"__m":"__inst_50478d2c_0_6"},"projection":"flat","useInlineFallback":false,"isBroadcast":false,"isInstreamAd":false,"customLiveManifestUrlParams":null,"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","should_autoplay":false,"immediateplay_reason":null,"player_version":"pleasantville","ad_client_token":null,"chaining_token":null,"video_channel_id":"","video_list_id":null,"reaction_video_channel_type":null,"reaction_video_channel_subtype":null,"video_url":"\/cgtnamerica\/videos\/603020973807861\/","video_urls":[["\/cgtnamerica\/videos\/603020973807861\/"]],"video_path":"\/cgtnamerica\/videos\/603020973807861\/","video_id":"603020973807861","video_ids":[["603020973807861"]],"components":[{"__m":"__inst_6d29ee41_0_5"},{"__m":"__inst_2223e126_0_5"},{"__m":"__inst_dbb8a0b1_0_5"},{"__m":"__inst_96dc3ae7_0_5"}],"alwaysShowCaptions":false,"subtitleBackgroundColor":"Black","subtitleBackgroundOpacity":45,"subtitleTextColor":"White","subtitleTextSize":100,"broadcasterOrigin":null,"offsettype":null,"offsetvalue":0,"shouldLogVideoViewability":false,"broadcastId":null,"isAdsPreview":false,"isInjectedAds":false,"isBroadcaster":null,"iframeEmbedReferrer":null},{"root_element":{"__m":"__elem_a648e52c_0_6"},"video_element":{"__m":"__elem_50478d2c_0_5"},"container_element":{"__m":"__elem_a588f507_0_1p"}}],19],["__inst_70dbca80_0_4",["VideoControls","__inst_a648e52c_0_5","__elem_70dbca80_0_4"],[{"__m":"__inst_a648e52c_0_5"},{"__m":"__elem_70dbca80_0_4"},{"hideOnEvents":{"finish":true,"pause":false,"autoplay":false},"showButtons":{"fullscreen":true,"casting":false,"permalink":false,"watchandscroll":false},"permalinkURL":"https:\/\/www.facebook.com\/ChinaGlobalTVNetwork\/videos\/2658816227487174\/","redesign":false,"hidePlaybackControl":false,"showPlaybackRateControl":false,"hideRemainingTime":false,"hideSettings":false,"isLive":false,"isGamingVideo":false,"isLiveRewindEnabled":false,"isSphericalVideo":false,"showQualitySelector":true,"qualitySelectorMinStreams":2,"useTwoRows":false,"isCommentAttachment":false,"adBreaks":[],"adBreaksDisableReasons":[],"pollTimestamps":[],"showSpatialAudioNUX":false,"shouldShowWNSNUX":false,"gamesVideoClipButtonEnabled":false,"gamesVideoCreatorClippingGK":false,"gamesDefaultClipLengthInSec":60,"annotatedMomentsOfInterest":{},"showPlayButtonForLive":false,"videoClipInfo":null,"mutedSegments":[],"isWatchIconEligible":false,"shouldShowPermalinkButton":false,"shouldShowInlineCopyLinkOption":true}],1],["__inst_6d29ee41_0_5",["VideoCover","__elem_6d29ee41_0_5","__elem_94c15385_0_5"],[{"__m":"__elem_6d29ee41_0_5"},[{"__m":"__elem_94c15385_0_5"}],null,{"showAfterFallback":true,"hiddenAfterFinish":false,"showWhileBuffering":false},false,0],2],["__inst_2223e126_0_5",["VideoNodeStaledScreen","__elem_2223e126_0_5"],[{"__m":"__elem_2223e126_0_5"}],2],["__inst_a176866d_0_5",["EmbeddedVideoPauseOverlay","__inst_a648e52c_0_6","__elem_a176866d_0_5","__elem_6555e0bc_0_5","__elem_a588f507_0_1q"],[{"__m":"__inst_a648e52c_0_6"},{"__m":"__elem_a176866d_0_5"},{"__m":"__elem_6555e0bc_0_5"},{"__m":"__elem_a588f507_0_1q"},null,null,null,null,{"showOnlyOnFullscreen":true,"showOnEndscreen":true}],1],["__inst_8c33f2cf_0_5",["VideoPlayButton","__inst_a648e52c_0_6","__elem_8c33f2cf_0_5"],[{"__m":"__inst_a648e52c_0_6"},{"__m":"__elem_8c33f2cf_0_5"},{"hiddenAfterFinish":false,"hiddenWhileVideoLoading":false,"hiddenWhileJSLoading":false,"hiddenWhilePaused":false,"hiddenInFallback":false,"spherical":false}],1],["__inst_492d06b7_0_5",["VideoSpinner","__inst_a648e52c_0_6","__elem_492d06b7_0_6"],[{"__m":"__inst_a648e52c_0_6"},{"__m":"__elem_492d06b7_0_6"}],1],["__inst_21a8c1d4_0_5",["VideoContextMenu","__inst_a648e52c_0_6","__elem_a588f507_0_1s"],[{"__m":"__inst_a648e52c_0_6"},{"__m":"__elem_a588f507_0_1s"},{"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/603020973807861\/"}],1],["__inst_866f970e_0_0",["VideoWithLoopingPlayback","__inst_a648e52c_0_6"],[{"__m":"__inst_a648e52c_0_6"},4],1],["__inst_c5b6bd12_0_5",["VideoWithClickToTahoe","__inst_a648e52c_0_6"],[{"__m":"__inst_a648e52c_0_6"},"\/cgtnamerica\/videos\/603020973807861\/","","channel_view_from_page_timeline",false,null,null,null,36,null,null,null,null],2],["__inst_dbb8a0b1_0_5",["VideoWithFallbackMode"],[{"fallbackTimeoutMs":10000}],2],["__inst_c523de71_0_5",["VideoWithSequentialAutoplay","__inst_a648e52c_0_6"],[{"__m":"__inst_a648e52c_0_6"},"0"],1],["__inst_1516ab8a_0_5",["VideoWithRapidFeedback","__inst_a648e52c_0_6"],[{"__m":"__inst_a648e52c_0_6"},"nonlive"],1],["__inst_74f26af1_0_5",["VideoPlayerRegistryComponent","__inst_a648e52c_0_6"],[{"__m":"__inst_a648e52c_0_6"}],1],["__inst_9f6501f1_0_5",["VideoWithFluentUFISupport","__inst_a648e52c_0_6"],[{"__m":"__inst_a648e52c_0_6"}],1],["__inst_8a4b6a17_0_4",["VideoWithVODBroadcast","__inst_a648e52c_0_6"],[{"__m":"__inst_a648e52c_0_6"}],1],["__inst_96dc3ae7_0_5",["VideoUpdateStateDirectory"],[],2],["__inst_e698bc89_0_5",["VideoVODCVCSubscription","__inst_a648e52c_0_6"],[{"__m":"__inst_a648e52c_0_6"}],1],["__inst_70689822_0_5",["VideoVODCVCFetching","__inst_a648e52c_0_6"],[{"__m":"__inst_a648e52c_0_6"}],1],["__inst_70dbca80_0_5",["VideoControls","__inst_a648e52c_0_6","__elem_70dbca80_0_5"],[{"__m":"__inst_a648e52c_0_6"},{"__m":"__elem_70dbca80_0_5"},{"hideOnEvents":{"finish":true,"pause":false,"autoplay":false},"showButtons":{"fullscreen":true,"casting":false,"permalink":false,"watchandscroll":false},"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/603020973807861\/","redesign":false,"hidePlaybackControl":false,"showPlaybackRateControl":false,"hideRemainingTime":false,"hideSettings":false,"isLive":false,"isGamingVideo":false,"isLiveRewindEnabled":false,"isSphericalVideo":false,"showQualitySelector":true,"qualitySelectorMinStreams":2,"useTwoRows":false,"isCommentAttachment":false,"adBreaks":[],"adBreaksDisableReasons":[],"pollTimestamps":[],"showSpatialAudioNUX":false,"shouldShowWNSNUX":false,"gamesVideoClipButtonEnabled":false,"gamesVideoCreatorClippingGK":false,"gamesDefaultClipLengthInSec":60,"annotatedMomentsOfInterest":{},"showPlayButtonForLive":false,"videoClipInfo":null,"mutedSegments":[],"isWatchIconEligible":false,"shouldShowPermalinkButton":false,"shouldShowInlineCopyLinkOption":true}],1],["__inst_6d29ee41_0_6",["VideoCover","__elem_6d29ee41_0_6","__elem_94c15385_0_6"],[{"__m":"__elem_6d29ee41_0_6"},[{"__m":"__elem_94c15385_0_6"}],null,{"showAfterFallback":true,"hiddenAfterFinish":false,"showWhileBuffering":false},false,0],2],["__inst_2223e126_0_6",["VideoNodeStaledScreen","__elem_2223e126_0_6"],[{"__m":"__elem_2223e126_0_6"}],2],["__inst_a176866d_0_6",["EmbeddedVideoPauseOverlay","__inst_a648e52c_0_3","__elem_a176866d_0_6","__elem_6555e0bc_0_6","__elem_a588f507_0_1v"],[{"__m":"__inst_a648e52c_0_3"},{"__m":"__elem_a176866d_0_6"},{"__m":"__elem_6555e0bc_0_6"},{"__m":"__elem_a588f507_0_1v"},null,null,null,null,{"showOnlyOnFullscreen":true,"showOnEndscreen":true}],1],["__inst_8c33f2cf_0_6",["VideoPlayButton","__inst_a648e52c_0_3","__elem_8c33f2cf_0_6"],[{"__m":"__inst_a648e52c_0_3"},{"__m":"__elem_8c33f2cf_0_6"},{"hiddenAfterFinish":false,"hiddenWhileVideoLoading":false,"hiddenWhileJSLoading":false,"hiddenWhilePaused":false,"hiddenInFallback":false,"spherical":false}],1],["__inst_492d06b7_0_6",["VideoSpinner","__inst_a648e52c_0_3","__elem_492d06b7_0_1"],[{"__m":"__inst_a648e52c_0_3"},{"__m":"__elem_492d06b7_0_1"}],1],["__inst_21a8c1d4_0_6",["VideoContextMenu","__inst_a648e52c_0_3","__elem_a588f507_0_1x"],[{"__m":"__inst_a648e52c_0_3"},{"__m":"__elem_a588f507_0_1x"},{"permalinkURL":"https:\/\/www.facebook.com\/ChinaGlobalTVNetwork\/videos\/2561909697364016\/"}],1],["__inst_c5b6bd12_0_6",["VideoWithClickToTahoe","__inst_a648e52c_0_3"],[{"__m":"__inst_a648e52c_0_3"},"\/ChinaGlobalTVNetwork\/videos\/2561909697364016\/UzpfSTMwMDY1MzMyNjY5NjYxMzoyNjYxMzM5NTQwNjI3OTY4\/","","channel_view_from_page_timeline",false,null,null,"UzpfSTMwMDY1MzMyNjY5NjYxMzoyNjYxMzM5NTQwNjI3OTY4",36,null,null,null,null],2],["__inst_dbb8a0b1_0_6",["VideoWithFallbackMode"],[{"fallbackTimeoutMs":10000}],2],["__inst_c523de71_0_6",["VideoWithSequentialAutoplay","__inst_a648e52c_0_3"],[{"__m":"__inst_a648e52c_0_3"},"0"],1],["__inst_1516ab8a_0_6",["VideoWithRapidFeedback","__inst_a648e52c_0_3"],[{"__m":"__inst_a648e52c_0_3"},"vod"],1],["__inst_74f26af1_0_6",["VideoPlayerRegistryComponent","__inst_a648e52c_0_3"],[{"__m":"__inst_a648e52c_0_3"}],1],["__inst_9f6501f1_0_6",["VideoWithFluentUFISupport","__inst_a648e52c_0_3"],[{"__m":"__inst_a648e52c_0_3"}],1],["__inst_8a4b6a17_0_5",["VideoWithVODBroadcast","__inst_a648e52c_0_3"],[{"__m":"__inst_a648e52c_0_3"}],1],["__inst_96dc3ae7_0_6",["VideoUpdateStateDirectory"],[],2],["__inst_e698bc89_0_6",["VideoVODCVCSubscription","__inst_a648e52c_0_3"],[{"__m":"__inst_a648e52c_0_3"}],1],["__inst_70689822_0_6",["VideoVODCVCFetching","__inst_a648e52c_0_3"],[{"__m":"__inst_a648e52c_0_3"}],1],["__inst_a648e52c_0_7",["VideoPlayerController","VideoPlayerHTML5Api","__inst_50478d2c_0_7","__inst_6d29ee41_0_7","__inst_2223e126_0_7","__inst_dbb8a0b1_0_7","__inst_96dc3ae7_0_7","__elem_a648e52c_0_7","__elem_50478d2c_0_7","__elem_a588f507_0_20"],[{"source":"inline","upstreamPlayerSource":null,"playerOrigin":null,"playerSuborigin":"inline","playerSuboriginDerived":null,"apiModule":{"__m":"VideoPlayerHTML5Api"},"apiConfig":{"__m":"__inst_50478d2c_0_7"},"projection":"flat","useInlineFallback":false,"isBroadcast":false,"isInstreamAd":false,"customLiveManifestUrlParams":null,"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","should_autoplay":false,"immediateplay_reason":null,"player_version":"pleasantville","ad_client_token":null,"chaining_token":null,"video_channel_id":"","video_list_id":null,"reaction_video_channel_type":null,"reaction_video_channel_subtype":null,"video_url":"\/ChinaGlobalTVNetwork\/videos\/764719224037291\/","video_urls":[["\/ChinaGlobalTVNetwork\/videos\/764719224037291\/"]],"video_path":"\/ChinaGlobalTVNetwork\/videos\/764719224037291\/","video_id":"764719224037291","video_ids":[["764719224037291"]],"components":[{"__m":"__inst_6d29ee41_0_7"},{"__m":"__inst_2223e126_0_7"},{"__m":"__inst_dbb8a0b1_0_7"},{"__m":"__inst_96dc3ae7_0_7"}],"alwaysShowCaptions":false,"subtitleBackgroundColor":"Black","subtitleBackgroundOpacity":45,"subtitleTextColor":"White","subtitleTextSize":100,"broadcasterOrigin":null,"offsettype":null,"offsetvalue":0,"shouldLogVideoViewability":false,"broadcastId":null,"isAdsPreview":false,"isInjectedAds":false,"isBroadcaster":null,"iframeEmbedReferrer":null},{"root_element":{"__m":"__elem_a648e52c_0_7"},"video_element":{"__m":"__elem_50478d2c_0_7"},"container_element":{"__m":"__elem_a588f507_0_20"}}],17],["__inst_6d29ee41_0_7",["VideoCover","__elem_6d29ee41_0_7","__elem_94c15385_0_7"],[{"__m":"__elem_6d29ee41_0_7"},[{"__m":"__elem_94c15385_0_7"}],null,{"showAfterFallback":true,"hiddenAfterFinish":false,"showWhileBuffering":false},false,0],2],["__inst_2223e126_0_7",["VideoNodeStaledScreen","__elem_2223e126_0_7"],[{"__m":"__elem_2223e126_0_7"}],2],["__inst_a176866d_0_7",["EmbeddedVideoPauseOverlay","__inst_a648e52c_0_7","__elem_a176866d_0_7","__elem_6555e0bc_0_7","__elem_a588f507_0_21"],[{"__m":"__inst_a648e52c_0_7"},{"__m":"__elem_a176866d_0_7"},{"__m":"__elem_6555e0bc_0_7"},{"__m":"__elem_a588f507_0_21"},null,null,null,null,{"showOnlyOnFullscreen":true,"showOnEndscreen":true}],1],["__inst_8c33f2cf_0_7",["VideoPlayButton","__inst_a648e52c_0_7","__elem_8c33f2cf_0_7"],[{"__m":"__inst_a648e52c_0_7"},{"__m":"__elem_8c33f2cf_0_7"},{"hiddenAfterFinish":false,"hiddenWhileVideoLoading":false,"hiddenWhileJSLoading":false,"hiddenWhilePaused":false,"hiddenInFallback":false,"spherical":false}],1],["__inst_492d06b7_0_7",["VideoSpinner","__inst_a648e52c_0_7","__elem_492d06b7_0_7"],[{"__m":"__inst_a648e52c_0_7"},{"__m":"__elem_492d06b7_0_7"}],1],["__inst_21a8c1d4_0_7",["VideoContextMenu","__inst_a648e52c_0_7","__elem_a588f507_0_23"],[{"__m":"__inst_a648e52c_0_7"},{"__m":"__elem_a588f507_0_23"},{"permalinkURL":"https:\/\/www.facebook.com\/ChinaGlobalTVNetwork\/videos\/764719224037291\/"}],1],["__inst_c5b6bd12_0_7",["VideoWithClickToTahoe","__inst_a648e52c_0_7"],[{"__m":"__inst_a648e52c_0_7"},"\/ChinaGlobalTVNetwork\/videos\/764719224037291\/UzpfSTMwMDY1MzMyNjY5NjYxMzoyNjYxMDk0MzIzOTg1ODIz\/","","channel_view_from_page_timeline",false,null,null,"UzpfSTMwMDY1MzMyNjY5NjYxMzoyNjYxMDk0MzIzOTg1ODIz",36,null,null,null,null],2],["__inst_dbb8a0b1_0_7",["VideoWithFallbackMode"],[{"fallbackTimeoutMs":10000}],2],["__inst_c523de71_0_7",["VideoWithSequentialAutoplay","__inst_a648e52c_0_7"],[{"__m":"__inst_a648e52c_0_7"},"0"],1],["__inst_1516ab8a_0_7",["VideoWithRapidFeedback","__inst_a648e52c_0_7"],[{"__m":"__inst_a648e52c_0_7"},"nonlive"],1],["__inst_74f26af1_0_7",["VideoPlayerRegistryComponent","__inst_a648e52c_0_7"],[{"__m":"__inst_a648e52c_0_7"}],1],["__inst_9f6501f1_0_7",["VideoWithFluentUFISupport","__inst_a648e52c_0_7"],[{"__m":"__inst_a648e52c_0_7"}],1],["__inst_96dc3ae7_0_7",["VideoUpdateStateDirectory"],[],2],["__inst_e698bc89_0_7",["VideoVODCVCSubscription","__inst_a648e52c_0_7"],[{"__m":"__inst_a648e52c_0_7"}],1],["__inst_70689822_0_7",["VideoVODCVCFetching","__inst_a648e52c_0_7"],[{"__m":"__inst_a648e52c_0_7"}],1],["__inst_70dbca80_0_6",["VideoControls","__inst_a648e52c_0_7","__elem_70dbca80_0_6"],[{"__m":"__inst_a648e52c_0_7"},{"__m":"__elem_70dbca80_0_6"},{"hideOnEvents":{"finish":true,"pause":false,"autoplay":false},"showButtons":{"fullscreen":true,"casting":false,"permalink":false,"watchandscroll":false},"permalinkURL":"https:\/\/www.facebook.com\/ChinaGlobalTVNetwork\/videos\/764719224037291\/","redesign":false,"hidePlaybackControl":false,"showPlaybackRateControl":false,"hideRemainingTime":false,"hideSettings":false,"isLive":false,"isGamingVideo":false,"isLiveRewindEnabled":false,"isSphericalVideo":false,"showQualitySelector":true,"qualitySelectorMinStreams":2,"useTwoRows":false,"isCommentAttachment":false,"adBreaks":[],"adBreaksDisableReasons":[],"pollTimestamps":[],"showSpatialAudioNUX":false,"shouldShowWNSNUX":false,"gamesVideoClipButtonEnabled":false,"gamesVideoCreatorClippingGK":false,"gamesDefaultClipLengthInSec":60,"annotatedMomentsOfInterest":{},"showPlayButtonForLive":false,"videoClipInfo":null,"mutedSegments":[],"isWatchIconEligible":false,"shouldShowPermalinkButton":false,"shouldShowInlineCopyLinkOption":true}],1],["__inst_a648e52c_0_8",["VideoPlayerController","VideoPlayerHTML5Api","__inst_50478d2c_0_8","__inst_6d29ee41_0_8","__inst_2223e126_0_8","__inst_dbb8a0b1_0_8","__inst_96dc3ae7_0_8","__elem_a648e52c_0_8","__elem_50478d2c_0_8","__elem_a588f507_0_26"],[{"source":"inline","upstreamPlayerSource":null,"playerOrigin":null,"playerSuborigin":"inline","playerSuboriginDerived":null,"apiModule":{"__m":"VideoPlayerHTML5Api"},"apiConfig":{"__m":"__inst_50478d2c_0_8"},"projection":"flat","useInlineFallback":false,"isBroadcast":false,"isInstreamAd":false,"customLiveManifestUrlParams":null,"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","should_autoplay":false,"immediateplay_reason":null,"player_version":"pleasantville","ad_client_token":null,"chaining_token":null,"video_channel_id":"","video_list_id":null,"reaction_video_channel_type":null,"reaction_video_channel_subtype":null,"video_url":"\/cgtnamerica\/videos\/2908242472529513\/","video_urls":[["\/cgtnamerica\/videos\/2908242472529513\/"]],"video_path":"\/cgtnamerica\/videos\/2908242472529513\/","video_id":"2908242472529513","video_ids":[["2908242472529513"]],"components":[{"__m":"__inst_6d29ee41_0_8"},{"__m":"__inst_2223e126_0_8"},{"__m":"__inst_dbb8a0b1_0_8"},{"__m":"__inst_96dc3ae7_0_8"}],"alwaysShowCaptions":false,"subtitleBackgroundColor":"Black","subtitleBackgroundOpacity":45,"subtitleTextColor":"White","subtitleTextSize":100,"broadcasterOrigin":null,"offsettype":null,"offsetvalue":0,"shouldLogVideoViewability":false,"broadcastId":null,"isAdsPreview":false,"isInjectedAds":false,"isBroadcaster":null,"iframeEmbedReferrer":null},{"root_element":{"__m":"__elem_a648e52c_0_8"},"video_element":{"__m":"__elem_50478d2c_0_8"},"container_element":{"__m":"__elem_a588f507_0_26"}}],19],["__inst_6d29ee41_0_8",["VideoCover","__elem_6d29ee41_0_8","__elem_94c15385_0_8"],[{"__m":"__elem_6d29ee41_0_8"},[{"__m":"__elem_94c15385_0_8"}],null,{"showAfterFallback":true,"hiddenAfterFinish":false,"showWhileBuffering":false},false,0],2],["__inst_2223e126_0_8",["VideoNodeStaledScreen","__elem_2223e126_0_8"],[{"__m":"__elem_2223e126_0_8"}],2],["__inst_a176866d_0_8",["EmbeddedVideoPauseOverlay","__inst_a648e52c_0_8","__elem_a176866d_0_8","__elem_6555e0bc_0_8","__elem_a588f507_0_27"],[{"__m":"__inst_a648e52c_0_8"},{"__m":"__elem_a176866d_0_8"},{"__m":"__elem_6555e0bc_0_8"},{"__m":"__elem_a588f507_0_27"},null,null,null,null,{"showOnlyOnFullscreen":true,"showOnEndscreen":true}],1],["__inst_8c33f2cf_0_8",["VideoPlayButton","__inst_a648e52c_0_8","__elem_8c33f2cf_0_8"],[{"__m":"__inst_a648e52c_0_8"},{"__m":"__elem_8c33f2cf_0_8"},{"hiddenAfterFinish":false,"hiddenWhileVideoLoading":false,"hiddenWhileJSLoading":false,"hiddenWhilePaused":false,"hiddenInFallback":false,"spherical":false}],1],["__inst_492d06b7_0_8",["VideoSpinner","__inst_a648e52c_0_8","__elem_492d06b7_0_8"],[{"__m":"__inst_a648e52c_0_8"},{"__m":"__elem_492d06b7_0_8"}],1],["__inst_21a8c1d4_0_8",["VideoContextMenu","__inst_a648e52c_0_8","__elem_a588f507_0_29"],[{"__m":"__inst_a648e52c_0_8"},{"__m":"__elem_a588f507_0_29"},{"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/2908242472529513\/"}],1],["__inst_866f970e_0_1",["VideoWithLoopingPlayback","__inst_a648e52c_0_8"],[{"__m":"__inst_a648e52c_0_8"},4],1],["__inst_c5b6bd12_0_8",["VideoWithClickToTahoe","__inst_a648e52c_0_8"],[{"__m":"__inst_a648e52c_0_8"},"\/cgtnamerica\/videos\/2908242472529513\/","","channel_view_from_page_timeline",false,null,null,null,36,null,null,null,null],2],["__inst_dbb8a0b1_0_8",["VideoWithFallbackMode"],[{"fallbackTimeoutMs":10000}],2],["__inst_c523de71_0_8",["VideoWithSequentialAutoplay","__inst_a648e52c_0_8"],[{"__m":"__inst_a648e52c_0_8"},"0"],1],["__inst_1516ab8a_0_8",["VideoWithRapidFeedback","__inst_a648e52c_0_8"],[{"__m":"__inst_a648e52c_0_8"},"nonlive"],1],["__inst_74f26af1_0_8",["VideoPlayerRegistryComponent","__inst_a648e52c_0_8"],[{"__m":"__inst_a648e52c_0_8"}],1],["__inst_9f6501f1_0_8",["VideoWithFluentUFISupport","__inst_a648e52c_0_8"],[{"__m":"__inst_a648e52c_0_8"}],1],["__inst_8a4b6a17_0_6",["VideoWithVODBroadcast","__inst_a648e52c_0_8"],[{"__m":"__inst_a648e52c_0_8"}],1],["__inst_96dc3ae7_0_8",["VideoUpdateStateDirectory"],[],2],["__inst_e698bc89_0_8",["VideoVODCVCSubscription","__inst_a648e52c_0_8"],[{"__m":"__inst_a648e52c_0_8"}],1],["__inst_70689822_0_8",["VideoVODCVCFetching","__inst_a648e52c_0_8"],[{"__m":"__inst_a648e52c_0_8"}],1],["__inst_57d19858_0_2",["VideoScrubberPreviewComponent","__inst_a648e52c_0_4"],[{"__m":"__inst_a648e52c_0_4"},{"timeIntervalBetweenImages":0,"previewScrubberWidth":0,"previewScrubberHeight":0,"maxImagesPerSprite":0,"imagesPerRow":0,"hasPreviewThumbnails":false,"spriteIndexToURIMap":{"1":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t15.6481-10\/71313470_2507781662804674_4768411767355211776_n.jpg?_nc_cat=111&_nc_ohc=KH4_FEKIQaMAQnJ4pe-1M5JvgiV9itbf-PJemxzRyvnzdPK0EJ13LH9yA&_nc_ht=scontent-cdg2-1.xx&oh=8295baa72901bf678695dec2f343e125&oe=5EB364AD"},"stereoMode":null,"scrubberVideoURI":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82535308_853365148448391_3801056880277585920_n.mp4?_nc_cat=106&_nc_ohc=vJdb-I8aToEAQmOPtMe8o656feabrdxMYdJvQF-fasrH-O0Le1ub-m8MA&_nc_ht=video-cdg2-1.xx&oh=0c719e46a2cfbac3d7517135f610707c&oe=5E172EF7","useScrubberVideo":false}],1],["__inst_57d19858_0_3",["VideoScrubberPreviewComponent","__inst_a648e52c_0_2"],[{"__m":"__inst_a648e52c_0_2"},{"timeIntervalBetweenImages":0,"previewScrubberWidth":0,"previewScrubberHeight":0,"maxImagesPerSprite":0,"imagesPerRow":0,"hasPreviewThumbnails":false,"spriteIndexToURIMap":{"1":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t15.6481-10\/75310796_1439116099595209_6152926305223442432_n.jpg?_nc_cat=108&_nc_ohc=PadKe1Wt3oEAQmRbnNwf2QnrQ9daRxZpAn68vidEMaQFBQPyQtWDhnOVw&_nc_ht=scontent-cdg2-1.xx&oh=dbfcb889abe3cbcc8af865e9dadf56ae&oe=5E9C0BE3"},"stereoMode":null,"scrubberVideoURI":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82888867_1618287484981019_1931070386372345856_n.mp4?_nc_cat=109&_nc_ohc=TFPHS2B_FyAAQkdgfT4hCTsn-nu3mOjTksMgYRfR_vwCKAr-z-kafkP2w&_nc_ht=video-cdg2-1.xx&oh=b73f2978b37928531681e2942eb55867&oe=5E17305E","useScrubberVideo":false}],1],["__inst_70dbca80_0_7",["VideoControls","__inst_a648e52c_0_3","__elem_70dbca80_0_7"],[{"__m":"__inst_a648e52c_0_3"},{"__m":"__elem_70dbca80_0_7"},{"hideOnEvents":{"finish":true,"pause":false,"autoplay":false},"showButtons":{"fullscreen":true,"casting":false,"permalink":false,"watchandscroll":false},"permalinkURL":"https:\/\/www.facebook.com\/ChinaGlobalTVNetwork\/videos\/2561909697364016\/","redesign":false,"hidePlaybackControl":false,"showPlaybackRateControl":false,"hideRemainingTime":false,"hideSettings":false,"isLive":false,"isGamingVideo":false,"isLiveRewindEnabled":false,"isSphericalVideo":false,"showQualitySelector":true,"qualitySelectorMinStreams":2,"useTwoRows":false,"isCommentAttachment":false,"adBreaks":[],"adBreaksDisableReasons":[],"pollTimestamps":[],"showSpatialAudioNUX":false,"shouldShowWNSNUX":false,"gamesVideoClipButtonEnabled":false,"gamesVideoCreatorClippingGK":false,"gamesDefaultClipLengthInSec":60,"annotatedMomentsOfInterest":{},"showPlayButtonForLive":false,"videoClipInfo":null,"mutedSegments":[],"isWatchIconEligible":false,"shouldShowPermalinkButton":false,"shouldShowInlineCopyLinkOption":true}],1],["__inst_57d19858_0_4",["VideoScrubberPreviewComponent","__inst_a648e52c_0_3"],[{"__m":"__inst_a648e52c_0_3"},{"timeIntervalBetweenImages":22,"previewScrubberWidth":155.6,"previewScrubberHeight":96,"maxImagesPerSprite":100,"imagesPerRow":10,"hasPreviewThumbnails":true,"spriteIndexToURIMap":{"1":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t15.6481-10\/p960x960\/76911475_1467045996785473_1500630855616299008_n.jpg?_nc_cat=108&_nc_ohc=eLxe4You6PoAQmp3N-Uk1z2wORvA4AOMp5r5TWULmy7avDr-K_m68uy9A&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=f7859ebd8b416899abd070ef60207882&oe=5E9D962A"},"stereoMode":null,"scrubberVideoURI":null,"useScrubberVideo":false}],1],["__inst_57d19858_0_5",["VideoScrubberPreviewComponent","__inst_a648e52c_0_6"],[{"__m":"__inst_a648e52c_0_6"},{"timeIntervalBetweenImages":0,"previewScrubberWidth":0,"previewScrubberHeight":0,"maxImagesPerSprite":0,"imagesPerRow":0,"hasPreviewThumbnails":false,"spriteIndexToURIMap":{"1":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t15.6481-10\/77188641_2381465585499074_6087542046686445568_n.jpg?_nc_cat=101&_nc_ohc=-OAv7v2cUT4AQkY3V0CncMHwT_L8xFCtjL-uSGcdbujnLYTLlaIC-7wPQ&_nc_ht=scontent-cdg2-1.xx&oh=81fbb81cf9da3b393dd77c7c6acc0543&oe=5EA6A379"},"stereoMode":null,"scrubberVideoURI":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/83147366_1235864283470606_4396344441334398976_n.mp4?_nc_cat=106&_nc_ohc=QxHT0RZC01gAQlnxBE36GJWfdfD-Bj5yj-oD5k34pwcT1DgbY2WPdLLNg&_nc_ht=video-cdg2-1.xx&oh=e904a5b1439b66380577b4938241739d&oe=5E172DDD","useScrubberVideo":false}],1],["__inst_57d19858_0_6",["VideoScrubberPreviewComponent","__inst_a648e52c_0_5"],[{"__m":"__inst_a648e52c_0_5"},{"timeIntervalBetweenImages":2,"previewScrubberWidth":155.6,"previewScrubberHeight":96,"maxImagesPerSprite":100,"imagesPerRow":10,"hasPreviewThumbnails":true,"spriteIndexToURIMap":{"1":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t15.6481-10\/p960x960\/74285266_2658818114153652_723625783771267072_n.jpg?_nc_cat=110&_nc_ohc=OqAttQ0gs7AAQl5lWsDZjHw_aJgL1ns0HVNxCbzZ4sacechDzW_irxolQ&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=333cc655b676f6258ef95e569b75a5c9&oe=5EAE77F8"},"stereoMode":null,"scrubberVideoURI":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82709810_499536734004616_7637102359444717568_n.mp4?_nc_cat=102&_nc_ohc=l2U1Oc9MicQAQk4-K9cRQ5LFEjyI7MAu-fBk_xgYV8Zi_XxJJ9UdJS8qQ&_nc_ht=video-cdg2-1.xx&oh=3e67457e72c6bae527c50a93774de194&oe=5E17277F","useScrubberVideo":false}],1],["__inst_a648e52c_0_9",["VideoPlayerController","VideoPlayerHTML5Api","__inst_50478d2c_0_9","__inst_6d29ee41_0_9","__inst_2223e126_0_9","__inst_dbb8a0b1_0_9","__inst_96dc3ae7_0_9","__elem_a648e52c_0_9","__elem_50478d2c_0_9","__elem_a588f507_0_2c"],[{"source":"inline","upstreamPlayerSource":null,"playerOrigin":null,"playerSuborigin":"inline","playerSuboriginDerived":null,"apiModule":{"__m":"VideoPlayerHTML5Api"},"apiConfig":{"__m":"__inst_50478d2c_0_9"},"projection":"flat","useInlineFallback":false,"isBroadcast":false,"isInstreamAd":false,"customLiveManifestUrlParams":null,"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","should_autoplay":false,"immediateplay_reason":null,"player_version":"pleasantville","ad_client_token":null,"chaining_token":null,"video_channel_id":"","video_list_id":null,"reaction_video_channel_type":null,"reaction_video_channel_subtype":null,"video_url":"\/cgtnamerica\/videos\/1054162518271150\/","video_urls":[["\/cgtnamerica\/videos\/1054162518271150\/"]],"video_path":"\/cgtnamerica\/videos\/1054162518271150\/","video_id":"1054162518271150","video_ids":[["1054162518271150"]],"components":[{"__m":"__inst_6d29ee41_0_9"},{"__m":"__inst_2223e126_0_9"},{"__m":"__inst_dbb8a0b1_0_9"},{"__m":"__inst_96dc3ae7_0_9"}],"alwaysShowCaptions":false,"subtitleBackgroundColor":"Black","subtitleBackgroundOpacity":45,"subtitleTextColor":"White","subtitleTextSize":100,"broadcasterOrigin":null,"offsettype":null,"offsetvalue":0,"shouldLogVideoViewability":false,"broadcastId":null,"isAdsPreview":false,"isInjectedAds":false,"isBroadcaster":null,"iframeEmbedReferrer":null},{"root_element":{"__m":"__elem_a648e52c_0_9"},"video_element":{"__m":"__elem_50478d2c_0_9"},"container_element":{"__m":"__elem_a588f507_0_2c"}}],18],["__inst_6d29ee41_0_9",["VideoCover","__elem_6d29ee41_0_9","__elem_94c15385_0_9"],[{"__m":"__elem_6d29ee41_0_9"},[{"__m":"__elem_94c15385_0_9"}],null,{"showAfterFallback":true,"hiddenAfterFinish":false,"showWhileBuffering":false},false,0],2],["__inst_2223e126_0_9",["VideoNodeStaledScreen","__elem_2223e126_0_9"],[{"__m":"__elem_2223e126_0_9"}],2],["__inst_a176866d_0_9",["EmbeddedVideoPauseOverlay","__inst_a648e52c_0_9","__elem_a176866d_0_9","__elem_6555e0bc_0_9","__elem_a588f507_0_2d"],[{"__m":"__inst_a648e52c_0_9"},{"__m":"__elem_a176866d_0_9"},{"__m":"__elem_6555e0bc_0_9"},{"__m":"__elem_a588f507_0_2d"},null,null,null,null,{"showOnlyOnFullscreen":true,"showOnEndscreen":true}],1],["__inst_8c33f2cf_0_9",["VideoPlayButton","__inst_a648e52c_0_9","__elem_8c33f2cf_0_9"],[{"__m":"__inst_a648e52c_0_9"},{"__m":"__elem_8c33f2cf_0_9"},{"hiddenAfterFinish":false,"hiddenWhileVideoLoading":false,"hiddenWhileJSLoading":false,"hiddenWhilePaused":false,"hiddenInFallback":false,"spherical":false}],1],["__inst_492d06b7_0_9",["VideoSpinner","__inst_a648e52c_0_9","__elem_492d06b7_0_9"],[{"__m":"__inst_a648e52c_0_9"},{"__m":"__elem_492d06b7_0_9"}],1],["__inst_21a8c1d4_0_9",["VideoContextMenu","__inst_a648e52c_0_9","__elem_a588f507_0_2f"],[{"__m":"__inst_a648e52c_0_9"},{"__m":"__elem_a588f507_0_2f"},{"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/1054162518271150\/"}],1],["__inst_c5b6bd12_0_9",["VideoWithClickToTahoe","__inst_a648e52c_0_9"],[{"__m":"__inst_a648e52c_0_9"},"\/cgtnamerica\/videos\/1054162518271150\/","","channel_view_from_page_timeline",false,null,null,null,36,null,null,null,null],2],["__inst_dbb8a0b1_0_9",["VideoWithFallbackMode"],[{"fallbackTimeoutMs":10000}],2],["__inst_c523de71_0_9",["VideoWithSequentialAutoplay","__inst_a648e52c_0_9"],[{"__m":"__inst_a648e52c_0_9"},"0"],1],["__inst_1516ab8a_0_9",["VideoWithRapidFeedback","__inst_a648e52c_0_9"],[{"__m":"__inst_a648e52c_0_9"},"nonlive"],1],["__inst_74f26af1_0_9",["VideoPlayerRegistryComponent","__inst_a648e52c_0_9"],[{"__m":"__inst_a648e52c_0_9"}],1],["__inst_9f6501f1_0_9",["VideoWithFluentUFISupport","__inst_a648e52c_0_9"],[{"__m":"__inst_a648e52c_0_9"}],1],["__inst_8a4b6a17_0_7",["VideoWithVODBroadcast","__inst_a648e52c_0_9"],[{"__m":"__inst_a648e52c_0_9"}],1],["__inst_96dc3ae7_0_9",["VideoUpdateStateDirectory"],[],2],["__inst_e698bc89_0_9",["VideoVODCVCSubscription","__inst_a648e52c_0_9"],[{"__m":"__inst_a648e52c_0_9"}],1],["__inst_70689822_0_9",["VideoVODCVCFetching","__inst_a648e52c_0_9"],[{"__m":"__inst_a648e52c_0_9"}],1],["__inst_70dbca80_0_8",["VideoControls","__inst_a648e52c_0_9","__elem_70dbca80_0_8"],[{"__m":"__inst_a648e52c_0_9"},{"__m":"__elem_70dbca80_0_8"},{"hideOnEvents":{"finish":true,"pause":false,"autoplay":false},"showButtons":{"fullscreen":true,"casting":false,"permalink":false,"watchandscroll":false},"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/1054162518271150\/","redesign":false,"hidePlaybackControl":false,"showPlaybackRateControl":false,"hideRemainingTime":false,"hideSettings":false,"isLive":false,"isGamingVideo":false,"isLiveRewindEnabled":false,"isSphericalVideo":false,"showQualitySelector":true,"qualitySelectorMinStreams":2,"useTwoRows":false,"isCommentAttachment":false,"adBreaks":[],"adBreaksDisableReasons":[],"pollTimestamps":[],"showSpatialAudioNUX":false,"shouldShowWNSNUX":false,"gamesVideoClipButtonEnabled":false,"gamesVideoCreatorClippingGK":false,"gamesDefaultClipLengthInSec":60,"annotatedMomentsOfInterest":{},"showPlayButtonForLive":false,"videoClipInfo":null,"mutedSegments":[],"isWatchIconEligible":false,"shouldShowPermalinkButton":false,"shouldShowInlineCopyLinkOption":true}],1],["__inst_57d19858_0_7",["VideoScrubberPreviewComponent","__inst_a648e52c_0_7"],[{"__m":"__inst_a648e52c_0_7"},{"timeIntervalBetweenImages":2,"previewScrubberWidth":155.6,"previewScrubberHeight":96,"maxImagesPerSprite":100,"imagesPerRow":10,"hasPreviewThumbnails":true,"spriteIndexToURIMap":{"1":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t15.6481-10\/p960x960\/75624484_764722374036976_3472004132762550272_n.jpg?_nc_cat=102&_nc_ohc=la2dMvi9RfkAQldqpAmwFbsXPllw82Bd0XNuG593JnK89-Mq3b1rqmmug&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=01938c6bd59f306fbc627ffb67592d12&oe=5E989EA5"},"stereoMode":null,"scrubberVideoURI":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82488768_2453353698221043_2734869122067202048_n.mp4?_nc_cat=103&_nc_ohc=_bs3VRxG26sAQlG99O6akTVcyJJWriEtEg9DYQAoJDD9kE0uYAdGFBBDQ&_nc_ht=video-cdg2-1.xx&oh=0b1f2d8aaffad778d8036fbe0739e76b&oe=5E17289A","useScrubberVideo":false}],1],["__inst_57d19858_0_8",["VideoScrubberPreviewComponent","__inst_a648e52c_0_8"],[{"__m":"__inst_a648e52c_0_8"},{"timeIntervalBetweenImages":0,"previewScrubberWidth":0,"previewScrubberHeight":0,"maxImagesPerSprite":0,"imagesPerRow":0,"hasPreviewThumbnails":false,"spriteIndexToURIMap":{"1":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t15.6481-10\/73423783_685573201977172_9082850744268226560_n.jpg?_nc_cat=110&_nc_ohc=iM7XuPKm0NgAQlwyPB4u7CzipuMOQVhyLnibiCmcM2hYvVLTnfsx7igQg&_nc_ht=scontent-cdg2-1.xx&oh=42d9010fd1e61623bf3cf8354423c9b4&oe=5E9AF697"},"stereoMode":null,"scrubberVideoURI":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82887602_480428182891301_4502073410741862400_n.mp4?_nc_cat=110&_nc_ohc=Msa0jjP6mlAAQm760mRD70cxV2XeOCT_3cgZutdG8W-0d6a3POaZ5OA3g&_nc_ht=video-cdg2-1.xx&oh=b47f7e43cee7b506261db1ebf9270340&oe=5E173062","useScrubberVideo":false}],1],["__inst_a648e52c_0_a",["VideoPlayerController","VideoPlayerHTML5Api","__inst_50478d2c_0_a","__inst_6d29ee41_0_a","__inst_2223e126_0_a","__inst_dbb8a0b1_0_a","__inst_96dc3ae7_0_a","__elem_a648e52c_0_a","__elem_50478d2c_0_a","__elem_a588f507_0_2i"],[{"source":"inline","upstreamPlayerSource":null,"playerOrigin":null,"playerSuborigin":"inline","playerSuboriginDerived":null,"apiModule":{"__m":"VideoPlayerHTML5Api"},"apiConfig":{"__m":"__inst_50478d2c_0_a"},"projection":"flat","useInlineFallback":false,"isBroadcast":true,"isInstreamAd":false,"customLiveManifestUrlParams":null,"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","should_autoplay":false,"immediateplay_reason":null,"player_version":"pleasantville","ad_client_token":null,"chaining_token":null,"video_channel_id":"","video_list_id":null,"reaction_video_channel_type":null,"reaction_video_channel_subtype":null,"video_url":"\/cgtnamerica\/videos\/781338735704182\/","video_urls":[["\/cgtnamerica\/videos\/781338735704182\/"]],"video_path":"\/cgtnamerica\/videos\/781338735704182\/","video_id":"781338735704182","video_ids":[["781338735704182"]],"components":[{"__m":"__inst_6d29ee41_0_a"},{"__m":"__inst_2223e126_0_a"},{"__m":"__inst_dbb8a0b1_0_a"},{"__m":"__inst_96dc3ae7_0_a"}],"alwaysShowCaptions":false,"subtitleBackgroundColor":"Black","subtitleBackgroundOpacity":45,"subtitleTextColor":"White","subtitleTextSize":100,"broadcasterOrigin":"frc3","offsettype":null,"offsetvalue":0,"shouldLogVideoViewability":false,"broadcastId":"2662003957228193","isAdsPreview":false,"isInjectedAds":false,"isBroadcaster":false,"iframeEmbedReferrer":null},{"root_element":{"__m":"__elem_a648e52c_0_a"},"video_element":{"__m":"__elem_50478d2c_0_a"},"container_element":{"__m":"__elem_a588f507_0_2i"}}],20],["__inst_6d29ee41_0_a",["VideoCover","__elem_6d29ee41_0_a","__elem_94c15385_0_a"],[{"__m":"__elem_6d29ee41_0_a"},[{"__m":"__elem_94c15385_0_a"}],null,{"showAfterFallback":true,"hiddenAfterFinish":false,"showWhileBuffering":false},false,0],2],["__inst_2a05bc4a_0_0",["VideoLiveInterruptedScreen","__inst_a648e52c_0_a","__elem_2a05bc4a_0_0"],[{"__m":"__inst_a648e52c_0_a"},{"__m":"__elem_2a05bc4a_0_0"}],1],["__inst_0c6f9d09_0_0",["VideoLiveEndscreen","__inst_a648e52c_0_a","__elem_0c6f9d09_0_0","__elem_a588f507_0_2j","__elem_a588f507_0_2k","__elem_a588f507_0_2l","__elem_a588f507_0_2m"],[{"__m":"__inst_a648e52c_0_a"},{"__m":"__elem_0c6f9d09_0_0"},false,{"__m":"__elem_a588f507_0_2j"},"300653326696613","CGTN America",null,{"__m":"__elem_a588f507_0_2k"},{"__m":"__elem_a588f507_0_2l"},{"__m":"__elem_a588f507_0_2m"}],1],["__inst_2223e126_0_a",["VideoNodeStaledScreen","__elem_2223e126_0_a"],[{"__m":"__elem_2223e126_0_a"}],2],["__inst_a176866d_0_a",["EmbeddedVideoPauseOverlay","__inst_a648e52c_0_a","__elem_a176866d_0_a","__elem_6555e0bc_0_a","__elem_a588f507_0_2n"],[{"__m":"__inst_a648e52c_0_a"},{"__m":"__elem_a176866d_0_a"},{"__m":"__elem_6555e0bc_0_a"},{"__m":"__elem_a588f507_0_2n"},null,null,null,null,{"showOnlyOnFullscreen":true,"showOnEndscreen":true}],1],["__inst_8c33f2cf_0_a",["VideoPlayButton","__inst_a648e52c_0_a","__elem_8c33f2cf_0_a"],[{"__m":"__inst_a648e52c_0_a"},{"__m":"__elem_8c33f2cf_0_a"},{"hiddenAfterFinish":true,"hiddenWhileVideoLoading":false,"hiddenWhileJSLoading":false,"hiddenWhilePaused":false,"hiddenInFallback":false,"spherical":false}],1],["__inst_492d06b7_0_a",["VideoSpinner","__inst_a648e52c_0_a","__elem_492d06b7_0_a"],[{"__m":"__inst_a648e52c_0_a"},{"__m":"__elem_492d06b7_0_a"}],1],["__inst_da303b47_0_0",["StreamingReactionsTray","__elem_a588f507_0_2o","__inst_a648e52c_0_a"],[{"__m":"__elem_a588f507_0_2o"},{"__m":"__inst_a648e52c_0_a"},"inline","781338735704182","2662003957228193","",{},true,true,true],1],["__inst_21a8c1d4_0_a",["VideoContextMenu","__inst_a648e52c_0_a","__elem_a588f507_0_2p"],[{"__m":"__inst_a648e52c_0_a"},{"__m":"__elem_a588f507_0_2p"},{"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/781338735704182\/"}],1],["__inst_c23c2f0c_0_0",["VideoWithLiveBroadcast","__inst_a648e52c_0_a"],[{"__m":"__inst_a648e52c_0_a"}],1],["__inst_c5b6bd12_0_a",["VideoWithClickToTahoe","__inst_a648e52c_0_a"],[{"__m":"__inst_a648e52c_0_a"},"\/cgtnamerica\/videos\/781338735704182\/","","channel_view_from_page_timeline",false,null,null,null,36,null,null,null,null],2],["__inst_dbb8a0b1_0_a",["VideoWithFallbackMode"],[{"fallbackTimeoutMs":10000}],2],["__inst_c523de71_0_a",["VideoWithSequentialAutoplay","__inst_a648e52c_0_a"],[{"__m":"__inst_a648e52c_0_a"},"0"],1],["__inst_1516ab8a_0_a",["VideoWithRapidFeedback","__inst_a648e52c_0_a"],[{"__m":"__inst_a648e52c_0_a"},"live"],1],["__inst_74f26af1_0_a",["VideoPlayerRegistryComponent","__inst_a648e52c_0_a"],[{"__m":"__inst_a648e52c_0_a"}],1],["__inst_9f6501f1_0_a",["VideoWithFluentUFISupport","__inst_a648e52c_0_a"],[{"__m":"__inst_a648e52c_0_a"}],1],["__inst_96dc3ae7_0_a",["VideoUpdateStateDirectory"],[],2],["__inst_076599bd_0_0",["LiveVideoIndicatorOverlay","__inst_a648e52c_0_a","__elem_a588f507_0_2q","__elem_a588f507_0_2r"],[{"__m":"__inst_a648e52c_0_a"},{"__m":"__elem_a588f507_0_2q"},{"__m":"__elem_a588f507_0_2r"},null,false,"page",false,false],1],["__inst_70dbca80_0_9",["VideoControls","__inst_a648e52c_0_a","__elem_70dbca80_0_9"],[{"__m":"__inst_a648e52c_0_a"},{"__m":"__elem_70dbca80_0_9"},{"hideOnEvents":{"finish":true,"pause":false,"autoplay":false},"showButtons":{"fullscreen":true,"casting":false,"permalink":false,"watchandscroll":false},"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/781338735704182\/","redesign":false,"hidePlaybackControl":false,"showPlaybackRateControl":false,"hideRemainingTime":false,"hideSettings":false,"isLive":true,"isGamingVideo":false,"isLiveRewindEnabled":false,"isSphericalVideo":false,"showQualitySelector":true,"qualitySelectorMinStreams":2,"useTwoRows":false,"isCommentAttachment":false,"adBreaks":[],"adBreaksDisableReasons":[],"pollTimestamps":[],"showSpatialAudioNUX":false,"shouldShowWNSNUX":false,"gamesVideoClipButtonEnabled":false,"gamesVideoCreatorClippingGK":false,"gamesDefaultClipLengthInSec":60,"annotatedMomentsOfInterest":{},"showPlayButtonForLive":false,"videoClipInfo":null,"mutedSegments":[],"isWatchIconEligible":false,"shouldShowPermalinkButton":false,"shouldShowInlineCopyLinkOption":true}],1],["__inst_57d19858_0_9",["VideoScrubberPreviewComponent","__inst_a648e52c_0_a"],[{"__m":"__inst_a648e52c_0_a"},{"timeIntervalBetweenImages":0,"previewScrubberWidth":0,"previewScrubberHeight":0,"maxImagesPerSprite":0,"imagesPerRow":0,"hasPreviewThumbnails":false,"spriteIndexToURIMap":{},"stereoMode":null,"scrubberVideoURI":null,"useScrubberVideo":false}],1],["__inst_57d19858_0_a",["VideoScrubberPreviewComponent","__inst_a648e52c_0_9"],[{"__m":"__inst_a648e52c_0_9"},{"timeIntervalBetweenImages":0,"previewScrubberWidth":0,"previewScrubberHeight":0,"maxImagesPerSprite":0,"imagesPerRow":0,"hasPreviewThumbnails":false,"spriteIndexToURIMap":{"1":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t15.6481-10\/74538461_535150717083216_6116128902332022784_n.jpg?_nc_cat=102&_nc_ohc=lenbFJpxDz8AQmNrMCiaBqVrBlL9kkbZvl_nPdwj8oGePs-cUgYAglSrg&_nc_ht=scontent-cdg2-1.xx&oh=5b32a1b5c8aa9672c2f9c28b20ad5078&oe=5E94F41C"},"stereoMode":null,"scrubberVideoURI":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82514411_2573691786234553_5827518013552721920_n.mp4?_nc_cat=107&_nc_ohc=4SKovWKxO7cAQmqvuF88Sa7CgS-9CMwzJc1VQ_8oIJIq6hZbXRqbiDmyA&_nc_ht=video-cdg2-1.xx&oh=9c62c821f0d71029bbc4dd46b6db61b4&oe=5E172C89","useScrubberVideo":false}],1],["__inst_8a751efa_0_7",["RelayAsyncDataPreloader","__inst_e9dd2b01_0_7"],[{"actorID":null,"asyncDataPreloader":{"__m":"__inst_e9dd2b01_0_7"},"pinnedStatus":"current_revision","queryID":"2969794079698848","queryVariables":{"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MTA1NDE2MjUxODI3MTE1MA==","focusCommentID":null,"isComet":false,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"scale":1,"useDefaultActor":true,"UFI2CommentsProvider_commentsKey":null}}],2],["__inst_8a751efa_0_8",["RelayAsyncDataPreloader","__inst_e9dd2b01_0_8"],[{"actorID":null,"asyncDataPreloader":{"__m":"__inst_e9dd2b01_0_8"},"pinnedStatus":"current_revision","queryID":"2969794079698848","queryVariables":{"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjYwMDc2NDMyMzU0Mzc1MQ==","focusCommentID":null,"isComet":false,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"scale":1,"useDefaultActor":true,"UFI2CommentsProvider_commentsKey":null}}],2],["__inst_8a751efa_0_9",["RelayAsyncDataPreloader","__inst_e9dd2b01_0_9"],[{"actorID":null,"asyncDataPreloader":{"__m":"__inst_e9dd2b01_0_9"},"pinnedStatus":"current_revision","queryID":"2969794079698848","queryVariables":{"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjUyNTUyMDI1NzU1NzUyMQ==","focusCommentID":null,"isComet":false,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"scale":1,"useDefaultActor":true,"UFI2CommentsProvider_commentsKey":null}}],2],["__inst_8a751efa_0_a",["RelayAsyncDataPreloader","__inst_e9dd2b01_0_a"],[{"actorID":null,"asyncDataPreloader":{"__m":"__inst_e9dd2b01_0_a"},"pinnedStatus":"current_revision","queryID":"2969794079698848","queryVariables":{"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6NjAzMDIwOTczODA3ODYx","focusCommentID":null,"isComet":false,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"scale":1,"useDefaultActor":true,"UFI2CommentsProvider_commentsKey":null}}],2],["__inst_a648e52c_0_b",["VideoPlayerController","VideoPlayerHTML5Api","__inst_50478d2c_0_b","__inst_6d29ee41_0_b","__inst_2223e126_0_b","__inst_dbb8a0b1_0_b","__inst_96dc3ae7_0_b","__elem_a648e52c_0_b","__elem_50478d2c_0_b","__elem_a588f507_0_2w"],[{"source":"inline","upstreamPlayerSource":null,"playerOrigin":null,"playerSuborigin":"inline","playerSuboriginDerived":null,"apiModule":{"__m":"VideoPlayerHTML5Api"},"apiConfig":{"__m":"__inst_50478d2c_0_b"},"projection":"flat","useInlineFallback":false,"isBroadcast":false,"isInstreamAd":false,"customLiveManifestUrlParams":null,"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","should_autoplay":false,"immediateplay_reason":null,"player_version":"pleasantville","ad_client_token":null,"chaining_token":null,"video_channel_id":"","video_list_id":null,"reaction_video_channel_type":null,"reaction_video_channel_subtype":null,"video_url":"\/cgtnamerica\/videos\/2600764323543751\/","video_urls":[["\/cgtnamerica\/videos\/2600764323543751\/"]],"video_path":"\/cgtnamerica\/videos\/2600764323543751\/","video_id":"2600764323543751","video_ids":[["2600764323543751"]],"components":[{"__m":"__inst_6d29ee41_0_b"},{"__m":"__inst_2223e126_0_b"},{"__m":"__inst_dbb8a0b1_0_b"},{"__m":"__inst_96dc3ae7_0_b"}],"alwaysShowCaptions":false,"subtitleBackgroundColor":"Black","subtitleBackgroundOpacity":45,"subtitleTextColor":"White","subtitleTextSize":100,"broadcasterOrigin":null,"offsettype":null,"offsetvalue":0,"shouldLogVideoViewability":false,"broadcastId":null,"isAdsPreview":false,"isInjectedAds":false,"isBroadcaster":null,"iframeEmbedReferrer":null},{"root_element":{"__m":"__elem_a648e52c_0_b"},"video_element":{"__m":"__elem_50478d2c_0_b"},"container_element":{"__m":"__elem_a588f507_0_2w"}}],18],["__inst_8a751efa_0_b",["RelayAsyncDataPreloader","__inst_e9dd2b01_0_b"],[{"actorID":null,"asyncDataPreloader":{"__m":"__inst_e9dd2b01_0_b"},"pinnedStatus":"current_revision","queryID":"2969794079698848","queryVariables":{"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6NDc2MTMyMDE2NDI5Nzg1","focusCommentID":null,"isComet":false,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"scale":1,"useDefaultActor":true,"UFI2CommentsProvider_commentsKey":null}}],2],["__inst_6d29ee41_0_b",["VideoCover","__elem_6d29ee41_0_b","__elem_94c15385_0_b"],[{"__m":"__elem_6d29ee41_0_b"},[{"__m":"__elem_94c15385_0_b"}],null,{"showAfterFallback":true,"hiddenAfterFinish":false,"showWhileBuffering":false},false,0],2],["__inst_2223e126_0_b",["VideoNodeStaledScreen","__elem_2223e126_0_b"],[{"__m":"__elem_2223e126_0_b"}],2],["__inst_a176866d_0_b",["EmbeddedVideoPauseOverlay","__inst_a648e52c_0_b","__elem_a176866d_0_b","__elem_6555e0bc_0_b","__elem_a588f507_0_2x"],[{"__m":"__inst_a648e52c_0_b"},{"__m":"__elem_a176866d_0_b"},{"__m":"__elem_6555e0bc_0_b"},{"__m":"__elem_a588f507_0_2x"},null,null,null,null,{"showOnlyOnFullscreen":true,"showOnEndscreen":true}],1],["__inst_8c33f2cf_0_b",["VideoPlayButton","__inst_a648e52c_0_b","__elem_8c33f2cf_0_b"],[{"__m":"__inst_a648e52c_0_b"},{"__m":"__elem_8c33f2cf_0_b"},{"hiddenAfterFinish":false,"hiddenWhileVideoLoading":false,"hiddenWhileJSLoading":false,"hiddenWhilePaused":false,"hiddenInFallback":false,"spherical":false}],1],["__inst_492d06b7_0_b",["VideoSpinner","__inst_a648e52c_0_b","__elem_492d06b7_0_b"],[{"__m":"__inst_a648e52c_0_b"},{"__m":"__elem_492d06b7_0_b"}],1],["__inst_21a8c1d4_0_b",["VideoContextMenu","__inst_a648e52c_0_b","__elem_a588f507_0_2z"],[{"__m":"__inst_a648e52c_0_b"},{"__m":"__elem_a588f507_0_2z"},{"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/2600764323543751\/"}],1],["__inst_c5b6bd12_0_b",["VideoWithClickToTahoe","__inst_a648e52c_0_b"],[{"__m":"__inst_a648e52c_0_b"},"\/cgtnamerica\/videos\/2600764323543751\/","","channel_view_from_page_timeline",false,null,null,null,36,null,null,null,null],2],["__inst_dbb8a0b1_0_b",["VideoWithFallbackMode"],[{"fallbackTimeoutMs":10000}],2],["__inst_c523de71_0_b",["VideoWithSequentialAutoplay","__inst_a648e52c_0_b"],[{"__m":"__inst_a648e52c_0_b"},"0"],1],["__inst_1516ab8a_0_b",["VideoWithRapidFeedback","__inst_a648e52c_0_b"],[{"__m":"__inst_a648e52c_0_b"},"nonlive"],1],["__inst_74f26af1_0_b",["VideoPlayerRegistryComponent","__inst_a648e52c_0_b"],[{"__m":"__inst_a648e52c_0_b"}],1],["__inst_9f6501f1_0_b",["VideoWithFluentUFISupport","__inst_a648e52c_0_b"],[{"__m":"__inst_a648e52c_0_b"}],1],["__inst_8a4b6a17_0_8",["VideoWithVODBroadcast","__inst_a648e52c_0_b"],[{"__m":"__inst_a648e52c_0_b"}],1],["__inst_96dc3ae7_0_b",["VideoUpdateStateDirectory"],[],2],["__inst_e698bc89_0_a",["VideoVODCVCSubscription","__inst_a648e52c_0_b"],[{"__m":"__inst_a648e52c_0_b"}],1],["__inst_70689822_0_a",["VideoVODCVCFetching","__inst_a648e52c_0_b"],[{"__m":"__inst_a648e52c_0_b"}],1],["__inst_8a751efa_0_c",["RelayAsyncDataPreloader","__inst_e9dd2b01_0_c"],[{"actorID":null,"asyncDataPreloader":{"__m":"__inst_e9dd2b01_0_c"},"pinnedStatus":"current_revision","queryID":"2969794079698848","queryVariables":{"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjY1OTczOTIxNzQ1NDY2Nw==","focusCommentID":null,"isComet":false,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"scale":1,"useDefaultActor":true,"UFI2CommentsProvider_commentsKey":null}}],2],["__inst_8a751efa_0_d",["RelayAsyncDataPreloader","__inst_e9dd2b01_0_d"],[{"actorID":null,"asyncDataPreloader":{"__m":"__inst_e9dd2b01_0_d"},"pinnedStatus":"current_revision","queryID":"2969794079698848","queryVariables":{"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjY2MTA5NDMyMzk4NTgyMw==","focusCommentID":null,"isComet":false,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"scale":1,"useDefaultActor":true,"UFI2CommentsProvider_commentsKey":null}}],2],["__inst_8a751efa_0_e",["RelayAsyncDataPreloader","__inst_e9dd2b01_0_e"],[{"actorID":null,"asyncDataPreloader":{"__m":"__inst_e9dd2b01_0_e"},"pinnedStatus":"current_revision","queryID":"2969794079698848","queryVariables":{"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MTM0NDY5MjY4NTY5NjY5MA==","focusCommentID":null,"isComet":false,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"scale":1,"useDefaultActor":true,"UFI2CommentsProvider_commentsKey":null}}],2],["__inst_a648e52c_0_c",["VideoPlayerController","VideoPlayerHTML5Api","__inst_50478d2c_0_c","__inst_6d29ee41_0_c","__inst_2223e126_0_c","__inst_dbb8a0b1_0_c","__inst_96dc3ae7_0_c","__elem_a648e52c_0_c","__elem_50478d2c_0_c","__elem_a588f507_0_32"],[{"source":"inline","upstreamPlayerSource":null,"playerOrigin":null,"playerSuborigin":"inline","playerSuboriginDerived":null,"apiModule":{"__m":"VideoPlayerHTML5Api"},"apiConfig":{"__m":"__inst_50478d2c_0_c"},"projection":"flat","useInlineFallback":false,"isBroadcast":false,"isInstreamAd":false,"customLiveManifestUrlParams":null,"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","should_autoplay":false,"immediateplay_reason":null,"player_version":"pleasantville","ad_client_token":null,"chaining_token":null,"video_channel_id":"","video_list_id":null,"reaction_video_channel_type":null,"reaction_video_channel_subtype":null,"video_url":"\/cgtnamerica\/videos\/476132016429785\/","video_urls":[["\/cgtnamerica\/videos\/476132016429785\/"]],"video_path":"\/cgtnamerica\/videos\/476132016429785\/","video_id":"476132016429785","video_ids":[["476132016429785"]],"components":[{"__m":"__inst_6d29ee41_0_c"},{"__m":"__inst_2223e126_0_c"},{"__m":"__inst_dbb8a0b1_0_c"},{"__m":"__inst_96dc3ae7_0_c"}],"alwaysShowCaptions":false,"subtitleBackgroundColor":"Black","subtitleBackgroundOpacity":45,"subtitleTextColor":"White","subtitleTextSize":100,"broadcasterOrigin":null,"offsettype":null,"offsetvalue":0,"shouldLogVideoViewability":false,"broadcastId":null,"isAdsPreview":false,"isInjectedAds":false,"isBroadcaster":null,"iframeEmbedReferrer":null},{"root_element":{"__m":"__elem_a648e52c_0_c"},"video_element":{"__m":"__elem_50478d2c_0_c"},"container_element":{"__m":"__elem_a588f507_0_32"}}],18],["__inst_6d29ee41_0_c",["VideoCover","__elem_6d29ee41_0_c","__elem_94c15385_0_c"],[{"__m":"__elem_6d29ee41_0_c"},[{"__m":"__elem_94c15385_0_c"}],null,{"showAfterFallback":true,"hiddenAfterFinish":false,"showWhileBuffering":false},false,0],2],["__inst_2223e126_0_c",["VideoNodeStaledScreen","__elem_2223e126_0_c"],[{"__m":"__elem_2223e126_0_c"}],2],["__inst_a176866d_0_c",["EmbeddedVideoPauseOverlay","__inst_a648e52c_0_c","__elem_a176866d_0_c","__elem_6555e0bc_0_c","__elem_a588f507_0_33"],[{"__m":"__inst_a648e52c_0_c"},{"__m":"__elem_a176866d_0_c"},{"__m":"__elem_6555e0bc_0_c"},{"__m":"__elem_a588f507_0_33"},null,null,null,null,{"showOnlyOnFullscreen":true,"showOnEndscreen":true}],1],["__inst_8c33f2cf_0_c",["VideoPlayButton","__inst_a648e52c_0_c","__elem_8c33f2cf_0_c"],[{"__m":"__inst_a648e52c_0_c"},{"__m":"__elem_8c33f2cf_0_c"},{"hiddenAfterFinish":false,"hiddenWhileVideoLoading":false,"hiddenWhileJSLoading":false,"hiddenWhilePaused":false,"hiddenInFallback":false,"spherical":false}],1],["__inst_492d06b7_0_c",["VideoSpinner","__inst_a648e52c_0_c","__elem_492d06b7_0_c"],[{"__m":"__inst_a648e52c_0_c"},{"__m":"__elem_492d06b7_0_c"}],1],["__inst_21a8c1d4_0_c",["VideoContextMenu","__inst_a648e52c_0_c","__elem_a588f507_0_35"],[{"__m":"__inst_a648e52c_0_c"},{"__m":"__elem_a588f507_0_35"},{"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/476132016429785\/"}],1],["__inst_c5b6bd12_0_c",["VideoWithClickToTahoe","__inst_a648e52c_0_c"],[{"__m":"__inst_a648e52c_0_c"},"\/cgtnamerica\/videos\/476132016429785\/","","channel_view_from_page_timeline",false,null,null,null,36,null,null,null,null],2],["__inst_dbb8a0b1_0_c",["VideoWithFallbackMode"],[{"fallbackTimeoutMs":10000}],2],["__inst_c523de71_0_c",["VideoWithSequentialAutoplay","__inst_a648e52c_0_c"],[{"__m":"__inst_a648e52c_0_c"},"0"],1],["__inst_1516ab8a_0_c",["VideoWithRapidFeedback","__inst_a648e52c_0_c"],[{"__m":"__inst_a648e52c_0_c"},"nonlive"],1],["__inst_74f26af1_0_c",["VideoPlayerRegistryComponent","__inst_a648e52c_0_c"],[{"__m":"__inst_a648e52c_0_c"}],1],["__inst_9f6501f1_0_c",["VideoWithFluentUFISupport","__inst_a648e52c_0_c"],[{"__m":"__inst_a648e52c_0_c"}],1],["__inst_8a4b6a17_0_9",["VideoWithVODBroadcast","__inst_a648e52c_0_c"],[{"__m":"__inst_a648e52c_0_c"}],1],["__inst_96dc3ae7_0_c",["VideoUpdateStateDirectory"],[],2],["__inst_e698bc89_0_b",["VideoVODCVCSubscription","__inst_a648e52c_0_c"],[{"__m":"__inst_a648e52c_0_c"}],1],["__inst_70689822_0_b",["VideoVODCVCFetching","__inst_a648e52c_0_c"],[{"__m":"__inst_a648e52c_0_c"}],1],["__inst_70dbca80_0_a",["VideoControls","__inst_a648e52c_0_b","__elem_70dbca80_0_a"],[{"__m":"__inst_a648e52c_0_b"},{"__m":"__elem_70dbca80_0_a"},{"hideOnEvents":{"finish":true,"pause":false,"autoplay":false},"showButtons":{"fullscreen":true,"casting":false,"permalink":false,"watchandscroll":false},"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/2600764323543751\/","redesign":false,"hidePlaybackControl":false,"showPlaybackRateControl":false,"hideRemainingTime":false,"hideSettings":false,"isLive":false,"isGamingVideo":false,"isLiveRewindEnabled":false,"isSphericalVideo":false,"showQualitySelector":true,"qualitySelectorMinStreams":2,"useTwoRows":false,"isCommentAttachment":false,"adBreaks":[],"adBreaksDisableReasons":[],"pollTimestamps":[],"showSpatialAudioNUX":false,"shouldShowWNSNUX":false,"gamesVideoClipButtonEnabled":false,"gamesVideoCreatorClippingGK":false,"gamesDefaultClipLengthInSec":60,"annotatedMomentsOfInterest":{},"showPlayButtonForLive":false,"videoClipInfo":null,"mutedSegments":[],"isWatchIconEligible":false,"shouldShowPermalinkButton":false,"shouldShowInlineCopyLinkOption":true}],1],["__inst_a648e52c_0_d",["VideoPlayerController","VideoPlayerHTML5Api","__inst_50478d2c_0_d","__inst_6d29ee41_0_d","__inst_2223e126_0_d","__inst_dbb8a0b1_0_d","__inst_96dc3ae7_0_d","__elem_a648e52c_0_d","__elem_50478d2c_0_d","__elem_a588f507_0_38"],[{"source":"inline","upstreamPlayerSource":null,"playerOrigin":null,"playerSuborigin":"inline","playerSuboriginDerived":null,"apiModule":{"__m":"VideoPlayerHTML5Api"},"apiConfig":{"__m":"__inst_50478d2c_0_d"},"projection":"flat","useInlineFallback":false,"isBroadcast":false,"isInstreamAd":false,"customLiveManifestUrlParams":null,"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","should_autoplay":false,"immediateplay_reason":null,"player_version":"pleasantville","ad_client_token":null,"chaining_token":null,"video_channel_id":"","video_list_id":null,"reaction_video_channel_type":null,"reaction_video_channel_subtype":null,"video_url":"\/cgtnamerica\/videos\/1344692685696690\/","video_urls":[["\/cgtnamerica\/videos\/1344692685696690\/"]],"video_path":"\/cgtnamerica\/videos\/1344692685696690\/","video_id":"1344692685696690","video_ids":[["1344692685696690"]],"components":[{"__m":"__inst_6d29ee41_0_d"},{"__m":"__inst_2223e126_0_d"},{"__m":"__inst_dbb8a0b1_0_d"},{"__m":"__inst_96dc3ae7_0_d"}],"alwaysShowCaptions":false,"subtitleBackgroundColor":"Black","subtitleBackgroundOpacity":45,"subtitleTextColor":"White","subtitleTextSize":100,"broadcasterOrigin":null,"offsettype":null,"offsetvalue":0,"shouldLogVideoViewability":false,"broadcastId":null,"isAdsPreview":false,"isInjectedAds":false,"isBroadcaster":null,"iframeEmbedReferrer":null},{"root_element":{"__m":"__elem_a648e52c_0_d"},"video_element":{"__m":"__elem_50478d2c_0_d"},"container_element":{"__m":"__elem_a588f507_0_38"}}],19],["__inst_6d29ee41_0_d",["VideoCover","__elem_6d29ee41_0_d","__elem_94c15385_0_d"],[{"__m":"__elem_6d29ee41_0_d"},[{"__m":"__elem_94c15385_0_d"}],null,{"showAfterFallback":true,"hiddenAfterFinish":false,"showWhileBuffering":false},false,0],2],["__inst_2223e126_0_d",["VideoNodeStaledScreen","__elem_2223e126_0_d"],[{"__m":"__elem_2223e126_0_d"}],2],["__inst_a176866d_0_d",["EmbeddedVideoPauseOverlay","__inst_a648e52c_0_d","__elem_a176866d_0_d","__elem_6555e0bc_0_d","__elem_a588f507_0_39"],[{"__m":"__inst_a648e52c_0_d"},{"__m":"__elem_a176866d_0_d"},{"__m":"__elem_6555e0bc_0_d"},{"__m":"__elem_a588f507_0_39"},null,null,null,null,{"showOnlyOnFullscreen":true,"showOnEndscreen":true}],1],["__inst_8c33f2cf_0_d",["VideoPlayButton","__inst_a648e52c_0_d","__elem_8c33f2cf_0_d"],[{"__m":"__inst_a648e52c_0_d"},{"__m":"__elem_8c33f2cf_0_d"},{"hiddenAfterFinish":false,"hiddenWhileVideoLoading":false,"hiddenWhileJSLoading":false,"hiddenWhilePaused":false,"hiddenInFallback":false,"spherical":false}],1],["__inst_492d06b7_0_d",["VideoSpinner","__inst_a648e52c_0_d","__elem_492d06b7_0_d"],[{"__m":"__inst_a648e52c_0_d"},{"__m":"__elem_492d06b7_0_d"}],1],["__inst_21a8c1d4_0_d",["VideoContextMenu","__inst_a648e52c_0_d","__elem_a588f507_0_3b"],[{"__m":"__inst_a648e52c_0_d"},{"__m":"__elem_a588f507_0_3b"},{"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/1344692685696690\/"}],1],["__inst_866f970e_0_2",["VideoWithLoopingPlayback","__inst_a648e52c_0_d"],[{"__m":"__inst_a648e52c_0_d"},3],1],["__inst_c5b6bd12_0_d",["VideoWithClickToTahoe","__inst_a648e52c_0_d"],[{"__m":"__inst_a648e52c_0_d"},"\/cgtnamerica\/videos\/1344692685696690\/","","channel_view_from_page_timeline",false,null,null,null,36,null,null,null,null],2],["__inst_dbb8a0b1_0_d",["VideoWithFallbackMode"],[{"fallbackTimeoutMs":10000}],2],["__inst_c523de71_0_d",["VideoWithSequentialAutoplay","__inst_a648e52c_0_d"],[{"__m":"__inst_a648e52c_0_d"},"0"],1],["__inst_1516ab8a_0_d",["VideoWithRapidFeedback","__inst_a648e52c_0_d"],[{"__m":"__inst_a648e52c_0_d"},"nonlive"],1],["__inst_74f26af1_0_d",["VideoPlayerRegistryComponent","__inst_a648e52c_0_d"],[{"__m":"__inst_a648e52c_0_d"}],1],["__inst_9f6501f1_0_d",["VideoWithFluentUFISupport","__inst_a648e52c_0_d"],[{"__m":"__inst_a648e52c_0_d"}],1],["__inst_8a4b6a17_0_a",["VideoWithVODBroadcast","__inst_a648e52c_0_d"],[{"__m":"__inst_a648e52c_0_d"}],1],["__inst_96dc3ae7_0_d",["VideoUpdateStateDirectory"],[],2],["__inst_e698bc89_0_c",["VideoVODCVCSubscription","__inst_a648e52c_0_d"],[{"__m":"__inst_a648e52c_0_d"}],1],["__inst_70689822_0_c",["VideoVODCVCFetching","__inst_a648e52c_0_d"],[{"__m":"__inst_a648e52c_0_d"}],1],["__inst_70dbca80_0_b",["VideoControls","__inst_a648e52c_0_d","__elem_70dbca80_0_b"],[{"__m":"__inst_a648e52c_0_d"},{"__m":"__elem_70dbca80_0_b"},{"hideOnEvents":{"finish":true,"pause":false,"autoplay":false},"showButtons":{"fullscreen":true,"casting":false,"permalink":false,"watchandscroll":false},"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/1344692685696690\/","redesign":false,"hidePlaybackControl":false,"showPlaybackRateControl":false,"hideRemainingTime":false,"hideSettings":false,"isLive":false,"isGamingVideo":false,"isLiveRewindEnabled":false,"isSphericalVideo":false,"showQualitySelector":true,"qualitySelectorMinStreams":2,"useTwoRows":false,"isCommentAttachment":false,"adBreaks":[],"adBreaksDisableReasons":[],"pollTimestamps":[],"showSpatialAudioNUX":false,"shouldShowWNSNUX":false,"gamesVideoClipButtonEnabled":false,"gamesVideoCreatorClippingGK":false,"gamesDefaultClipLengthInSec":60,"annotatedMomentsOfInterest":{},"showPlayButtonForLive":false,"videoClipInfo":null,"mutedSegments":[],"isWatchIconEligible":false,"shouldShowPermalinkButton":false,"shouldShowInlineCopyLinkOption":true}],1],["__inst_70dbca80_0_c",["VideoControls","__inst_a648e52c_0_c","__elem_70dbca80_0_c"],[{"__m":"__inst_a648e52c_0_c"},{"__m":"__elem_70dbca80_0_c"},{"hideOnEvents":{"finish":true,"pause":false,"autoplay":false},"showButtons":{"fullscreen":true,"casting":false,"permalink":false,"watchandscroll":false},"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/476132016429785\/","redesign":false,"hidePlaybackControl":false,"showPlaybackRateControl":false,"hideRemainingTime":false,"hideSettings":false,"isLive":false,"isGamingVideo":false,"isLiveRewindEnabled":false,"isSphericalVideo":false,"showQualitySelector":true,"qualitySelectorMinStreams":2,"useTwoRows":false,"isCommentAttachment":false,"adBreaks":[],"adBreaksDisableReasons":[],"pollTimestamps":[],"showSpatialAudioNUX":false,"shouldShowWNSNUX":false,"gamesVideoClipButtonEnabled":false,"gamesVideoCreatorClippingGK":false,"gamesDefaultClipLengthInSec":60,"annotatedMomentsOfInterest":{},"showPlayButtonForLive":false,"videoClipInfo":null,"mutedSegments":[],"isWatchIconEligible":false,"shouldShowPermalinkButton":false,"shouldShowInlineCopyLinkOption":true}],1],["__inst_57d19858_0_b",["VideoScrubberPreviewComponent","__inst_a648e52c_0_b"],[{"__m":"__inst_a648e52c_0_b"},{"timeIntervalBetweenImages":0,"previewScrubberWidth":0,"previewScrubberHeight":0,"maxImagesPerSprite":0,"imagesPerRow":0,"hasPreviewThumbnails":false,"spriteIndexToURIMap":{"1":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t15.6481-10\/71582268_515732922372976_3306846946420850688_n.jpg?_nc_cat=110&_nc_ohc=MmVnwTy6Yb8AQmzLODx4Yl3tVLUt7XHT_94-0lYpRj19seaMbCemZqbDQ&_nc_ht=scontent-cdg2-1.xx&oh=969ea87cc9be02a9f390c58124d6b639&oe=5E9AD2DF"},"stereoMode":null,"scrubberVideoURI":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82452298_2728356403869858_5481120560303833088_n.mp4?_nc_cat=110&_nc_ohc=PrUlj8FlF3UAQllD7P-4lb3YMSnyqGSzZg48p8DJTypgG4PJi7VeaN2Sw&_nc_ht=video-cdg2-1.xx&oh=9f078d4a3389619ea6f787598569cdca&oe=5E172882","useScrubberVideo":false}],1],["__inst_a648e52c_0_e",["VideoPlayerController","VideoPlayerHTML5Api","__inst_50478d2c_0_e","__inst_6d29ee41_0_e","__inst_2223e126_0_e","__inst_dbb8a0b1_0_e","__inst_96dc3ae7_0_e","__elem_a648e52c_0_e","__elem_50478d2c_0_e","__elem_a588f507_0_3g"],[{"source":"inline","upstreamPlayerSource":null,"playerOrigin":null,"playerSuborigin":"inline","playerSuboriginDerived":null,"apiModule":{"__m":"VideoPlayerHTML5Api"},"apiConfig":{"__m":"__inst_50478d2c_0_e"},"projection":"flat","useInlineFallback":false,"isBroadcast":false,"isInstreamAd":false,"customLiveManifestUrlParams":null,"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","should_autoplay":false,"immediateplay_reason":null,"player_version":"pleasantville","ad_client_token":null,"chaining_token":null,"video_channel_id":"","video_list_id":null,"reaction_video_channel_type":null,"reaction_video_channel_subtype":null,"video_url":"\/cgtnamerica\/videos\/458567871694659\/","video_urls":[["\/cgtnamerica\/videos\/458567871694659\/"]],"video_path":"\/cgtnamerica\/videos\/458567871694659\/","video_id":"458567871694659","video_ids":[["458567871694659"]],"components":[{"__m":"__inst_6d29ee41_0_e"},{"__m":"__inst_2223e126_0_e"},{"__m":"__inst_dbb8a0b1_0_e"},{"__m":"__inst_96dc3ae7_0_e"}],"alwaysShowCaptions":false,"subtitleBackgroundColor":"Black","subtitleBackgroundOpacity":45,"subtitleTextColor":"White","subtitleTextSize":100,"broadcasterOrigin":null,"offsettype":null,"offsetvalue":0,"shouldLogVideoViewability":false,"broadcastId":null,"isAdsPreview":false,"isInjectedAds":false,"isBroadcaster":null,"iframeEmbedReferrer":null},{"root_element":{"__m":"__elem_a648e52c_0_e"},"video_element":{"__m":"__elem_50478d2c_0_e"},"container_element":{"__m":"__elem_a588f507_0_3g"}}],18],["__inst_6d29ee41_0_e",["VideoCover","__elem_6d29ee41_0_e","__elem_94c15385_0_e"],[{"__m":"__elem_6d29ee41_0_e"},[{"__m":"__elem_94c15385_0_e"}],null,{"showAfterFallback":true,"hiddenAfterFinish":false,"showWhileBuffering":false},false,0],2],["__inst_2223e126_0_e",["VideoNodeStaledScreen","__elem_2223e126_0_e"],[{"__m":"__elem_2223e126_0_e"}],2],["__inst_a176866d_0_e",["EmbeddedVideoPauseOverlay","__inst_a648e52c_0_e","__elem_a176866d_0_e","__elem_6555e0bc_0_e","__elem_a588f507_0_3h"],[{"__m":"__inst_a648e52c_0_e"},{"__m":"__elem_a176866d_0_e"},{"__m":"__elem_6555e0bc_0_e"},{"__m":"__elem_a588f507_0_3h"},null,null,null,null,{"showOnlyOnFullscreen":true,"showOnEndscreen":true}],1],["__inst_8c33f2cf_0_e",["VideoPlayButton","__inst_a648e52c_0_e","__elem_8c33f2cf_0_e"],[{"__m":"__inst_a648e52c_0_e"},{"__m":"__elem_8c33f2cf_0_e"},{"hiddenAfterFinish":false,"hiddenWhileVideoLoading":false,"hiddenWhileJSLoading":false,"hiddenWhilePaused":false,"hiddenInFallback":false,"spherical":false}],1],["__inst_492d06b7_0_e",["VideoSpinner","__inst_a648e52c_0_e","__elem_492d06b7_0_e"],[{"__m":"__inst_a648e52c_0_e"},{"__m":"__elem_492d06b7_0_e"}],1],["__inst_21a8c1d4_0_e",["VideoContextMenu","__inst_a648e52c_0_e","__elem_a588f507_0_3j"],[{"__m":"__inst_a648e52c_0_e"},{"__m":"__elem_a588f507_0_3j"},{"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/458567871694659\/"}],1],["__inst_c5b6bd12_0_e",["VideoWithClickToTahoe","__inst_a648e52c_0_e"],[{"__m":"__inst_a648e52c_0_e"},"\/cgtnamerica\/videos\/458567871694659\/","","channel_view_from_page_timeline",false,null,null,null,36,null,null,null,null],2],["__inst_dbb8a0b1_0_e",["VideoWithFallbackMode"],[{"fallbackTimeoutMs":10000}],2],["__inst_c523de71_0_e",["VideoWithSequentialAutoplay","__inst_a648e52c_0_e"],[{"__m":"__inst_a648e52c_0_e"},"0"],1],["__inst_1516ab8a_0_e",["VideoWithRapidFeedback","__inst_a648e52c_0_e"],[{"__m":"__inst_a648e52c_0_e"},"nonlive"],1],["__inst_74f26af1_0_e",["VideoPlayerRegistryComponent","__inst_a648e52c_0_e"],[{"__m":"__inst_a648e52c_0_e"}],1],["__inst_9f6501f1_0_e",["VideoWithFluentUFISupport","__inst_a648e52c_0_e"],[{"__m":"__inst_a648e52c_0_e"}],1],["__inst_8a4b6a17_0_b",["VideoWithVODBroadcast","__inst_a648e52c_0_e"],[{"__m":"__inst_a648e52c_0_e"}],1],["__inst_96dc3ae7_0_e",["VideoUpdateStateDirectory"],[],2],["__inst_e698bc89_0_d",["VideoVODCVCSubscription","__inst_a648e52c_0_e"],[{"__m":"__inst_a648e52c_0_e"}],1],["__inst_70689822_0_d",["VideoVODCVCFetching","__inst_a648e52c_0_e"],[{"__m":"__inst_a648e52c_0_e"}],1],["__inst_57d19858_0_c",["VideoScrubberPreviewComponent","__inst_a648e52c_0_d"],[{"__m":"__inst_a648e52c_0_d"},{"timeIntervalBetweenImages":0,"previewScrubberWidth":0,"previewScrubberHeight":0,"maxImagesPerSprite":0,"imagesPerRow":0,"hasPreviewThumbnails":false,"spriteIndexToURIMap":{"1":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t15.6481-10\/75584109_2755049571200766_8977194763534991360_n.jpg?_nc_cat=108&_nc_ohc=isgMQe0xLgUAQkyj22SyzjzZxadlHQ8-KQyhXFfyd6FLj1Ac0Z0QmcKrg&_nc_ht=scontent-cdg2-1.xx&oh=07d8e5414cedf80970e05a41a3d6cc61&oe=5EA1B7DA"},"stereoMode":null,"scrubberVideoURI":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82580392_2672663306157379_1918368703494225920_n.mp4?_nc_cat=104&_nc_ohc=yMI0qtN-EboAQnxjYM0JXbNRZERzNXjnQv86_f3TTdbrUS1vFG3RyTh0w&_nc_ht=video-cdg2-1.xx&oh=af1c7a086cc3ad9029bc310afe90587e&oe=5E172E21","useScrubberVideo":false}],1],["__inst_57d19858_0_d",["VideoScrubberPreviewComponent","__inst_a648e52c_0_c"],[{"__m":"__inst_a648e52c_0_c"},{"timeIntervalBetweenImages":0,"previewScrubberWidth":0,"previewScrubberHeight":0,"maxImagesPerSprite":0,"imagesPerRow":0,"hasPreviewThumbnails":false,"spriteIndexToURIMap":{"1":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t15.6481-10\/76758241_626419791463229_8074246248250474496_n.jpg?_nc_cat=109&_nc_ohc=NMs7eXFeOP8AQlQEG-ruYpaxv203umVypoO6nA4a6rjpHUlke5xe4bK6Q&_nc_ht=scontent-cdg2-1.xx&oh=6419b30c66fa7b27fbe7bf9240bc9037&oe=5E96AFC9"},"stereoMode":null,"scrubberVideoURI":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82644251_2824772377565608_3230335329563049984_n.mp4?_nc_cat=100&_nc_ohc=_NliNKmrx6sAQnWBc0HQrtqec7pwcXa57-vY7cE_cAvOrAdVfbFWe3eMg&_nc_ht=video-cdg2-1.xx&oh=660daabf991babef05eaf142a92bd2f9&oe=5E172691","useScrubberVideo":false}],1],["__inst_70dbca80_0_d",["VideoControls","__inst_a648e52c_0_e","__elem_70dbca80_0_d"],[{"__m":"__inst_a648e52c_0_e"},{"__m":"__elem_70dbca80_0_d"},{"hideOnEvents":{"finish":true,"pause":false,"autoplay":false},"showButtons":{"fullscreen":true,"casting":false,"permalink":false,"watchandscroll":false},"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/458567871694659\/","redesign":false,"hidePlaybackControl":false,"showPlaybackRateControl":false,"hideRemainingTime":false,"hideSettings":false,"isLive":false,"isGamingVideo":false,"isLiveRewindEnabled":false,"isSphericalVideo":false,"showQualitySelector":true,"qualitySelectorMinStreams":2,"useTwoRows":false,"isCommentAttachment":false,"adBreaks":[],"adBreaksDisableReasons":[],"pollTimestamps":[],"showSpatialAudioNUX":false,"shouldShowWNSNUX":false,"gamesVideoClipButtonEnabled":false,"gamesVideoCreatorClippingGK":false,"gamesDefaultClipLengthInSec":60,"annotatedMomentsOfInterest":{},"showPlayButtonForLive":false,"videoClipInfo":null,"mutedSegments":[],"isWatchIconEligible":false,"shouldShowPermalinkButton":false,"shouldShowInlineCopyLinkOption":true}],1],["__inst_a648e52c_0_f",["VideoPlayerController","VideoPlayerHTML5Api","__inst_50478d2c_0_f","__inst_6d29ee41_0_f","__inst_2223e126_0_f","__inst_dbb8a0b1_0_f","__inst_96dc3ae7_0_f","__elem_a648e52c_0_f","__elem_50478d2c_0_f","__elem_a588f507_0_3m"],[{"source":"inline","upstreamPlayerSource":null,"playerOrigin":null,"playerSuborigin":"inline","playerSuboriginDerived":null,"apiModule":{"__m":"VideoPlayerHTML5Api"},"apiConfig":{"__m":"__inst_50478d2c_0_f"},"projection":"flat","useInlineFallback":false,"isBroadcast":false,"isInstreamAd":false,"customLiveManifestUrlParams":null,"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","should_autoplay":false,"immediateplay_reason":null,"player_version":"pleasantville","ad_client_token":null,"chaining_token":null,"video_channel_id":"","video_list_id":null,"reaction_video_channel_type":null,"reaction_video_channel_subtype":null,"video_url":"\/cgtnamerica\/videos\/724280891432620\/","video_urls":[["\/cgtnamerica\/videos\/724280891432620\/"]],"video_path":"\/cgtnamerica\/videos\/724280891432620\/","video_id":"724280891432620","video_ids":[["724280891432620"]],"components":[{"__m":"__inst_6d29ee41_0_f"},{"__m":"__inst_2223e126_0_f"},{"__m":"__inst_dbb8a0b1_0_f"},{"__m":"__inst_96dc3ae7_0_f"}],"alwaysShowCaptions":false,"subtitleBackgroundColor":"Black","subtitleBackgroundOpacity":45,"subtitleTextColor":"White","subtitleTextSize":100,"broadcasterOrigin":null,"offsettype":null,"offsetvalue":0,"shouldLogVideoViewability":false,"broadcastId":null,"isAdsPreview":false,"isInjectedAds":false,"isBroadcaster":null,"iframeEmbedReferrer":null},{"root_element":{"__m":"__elem_a648e52c_0_f"},"video_element":{"__m":"__elem_50478d2c_0_f"},"container_element":{"__m":"__elem_a588f507_0_3m"}}],18],["__inst_6d29ee41_0_f",["VideoCover","__elem_6d29ee41_0_f","__elem_94c15385_0_f"],[{"__m":"__elem_6d29ee41_0_f"},[{"__m":"__elem_94c15385_0_f"}],null,{"showAfterFallback":true,"hiddenAfterFinish":false,"showWhileBuffering":false},false,0],2],["__inst_2223e126_0_f",["VideoNodeStaledScreen","__elem_2223e126_0_f"],[{"__m":"__elem_2223e126_0_f"}],2],["__inst_a176866d_0_f",["EmbeddedVideoPauseOverlay","__inst_a648e52c_0_f","__elem_a176866d_0_f","__elem_6555e0bc_0_f","__elem_a588f507_0_3n"],[{"__m":"__inst_a648e52c_0_f"},{"__m":"__elem_a176866d_0_f"},{"__m":"__elem_6555e0bc_0_f"},{"__m":"__elem_a588f507_0_3n"},null,null,null,null,{"showOnlyOnFullscreen":true,"showOnEndscreen":true}],1],["__inst_8c33f2cf_0_f",["VideoPlayButton","__inst_a648e52c_0_f","__elem_8c33f2cf_0_f"],[{"__m":"__inst_a648e52c_0_f"},{"__m":"__elem_8c33f2cf_0_f"},{"hiddenAfterFinish":false,"hiddenWhileVideoLoading":false,"hiddenWhileJSLoading":false,"hiddenWhilePaused":false,"hiddenInFallback":false,"spherical":false}],1],["__inst_492d06b7_0_f",["VideoSpinner","__inst_a648e52c_0_f","__elem_492d06b7_0_f"],[{"__m":"__inst_a648e52c_0_f"},{"__m":"__elem_492d06b7_0_f"}],1],["__inst_21a8c1d4_0_f",["VideoContextMenu","__inst_a648e52c_0_f","__elem_a588f507_0_3p"],[{"__m":"__inst_a648e52c_0_f"},{"__m":"__elem_a588f507_0_3p"},{"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/724280891432620\/"}],1],["__inst_c5b6bd12_0_f",["VideoWithClickToTahoe","__inst_a648e52c_0_f"],[{"__m":"__inst_a648e52c_0_f"},"\/cgtnamerica\/videos\/724280891432620\/","","channel_view_from_page_timeline",false,null,null,null,36,null,null,null,null],2],["__inst_dbb8a0b1_0_f",["VideoWithFallbackMode"],[{"fallbackTimeoutMs":10000}],2],["__inst_c523de71_0_f",["VideoWithSequentialAutoplay","__inst_a648e52c_0_f"],[{"__m":"__inst_a648e52c_0_f"},"0"],1],["__inst_1516ab8a_0_f",["VideoWithRapidFeedback","__inst_a648e52c_0_f"],[{"__m":"__inst_a648e52c_0_f"},"nonlive"],1],["__inst_74f26af1_0_f",["VideoPlayerRegistryComponent","__inst_a648e52c_0_f"],[{"__m":"__inst_a648e52c_0_f"}],1],["__inst_9f6501f1_0_f",["VideoWithFluentUFISupport","__inst_a648e52c_0_f"],[{"__m":"__inst_a648e52c_0_f"}],1],["__inst_8a4b6a17_0_c",["VideoWithVODBroadcast","__inst_a648e52c_0_f"],[{"__m":"__inst_a648e52c_0_f"}],1],["__inst_96dc3ae7_0_f",["VideoUpdateStateDirectory"],[],2],["__inst_e698bc89_0_e",["VideoVODCVCSubscription","__inst_a648e52c_0_f"],[{"__m":"__inst_a648e52c_0_f"}],1],["__inst_70689822_0_e",["VideoVODCVCFetching","__inst_a648e52c_0_f"],[{"__m":"__inst_a648e52c_0_f"}],1],["__inst_57d19858_0_e",["VideoScrubberPreviewComponent","__inst_a648e52c_0_e"],[{"__m":"__inst_a648e52c_0_e"},{"timeIntervalBetweenImages":0,"previewScrubberWidth":0,"previewScrubberHeight":0,"maxImagesPerSprite":0,"imagesPerRow":0,"hasPreviewThumbnails":false,"spriteIndexToURIMap":{"1":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t15.6481-10\/72567667_782580115489116_9160277515577589760_n.jpg?_nc_cat=101&_nc_ohc=s0leRHSjE08AQkxfv_UKaY8NzqWcfmGpMWgufv0quBC3wZTcr4VEFa0pA&_nc_ht=scontent-cdg2-1.xx&oh=31713bc34ca7f691860307548c46d73f&oe=5E93A5DE"},"stereoMode":null,"scrubberVideoURI":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82553694_835977410169276_4056717389847330816_n.mp4?_nc_cat=106&_nc_ohc=vsTbeWaR3C4AQnPZ6YgmeVoj8U3XKGogEItq9hwzwb4UXwtXoy8p1vavQ&_nc_ht=video-cdg2-1.xx&oh=6475b1759a3f4ecd3a9375b8cee97481&oe=5E172CA5","useScrubberVideo":false}],1],["__inst_70dbca80_0_e",["VideoControls","__inst_a648e52c_0_f","__elem_70dbca80_0_e"],[{"__m":"__inst_a648e52c_0_f"},{"__m":"__elem_70dbca80_0_e"},{"hideOnEvents":{"finish":true,"pause":false,"autoplay":false},"showButtons":{"fullscreen":true,"casting":false,"permalink":false,"watchandscroll":false},"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/724280891432620\/","redesign":false,"hidePlaybackControl":false,"showPlaybackRateControl":false,"hideRemainingTime":false,"hideSettings":false,"isLive":false,"isGamingVideo":false,"isLiveRewindEnabled":false,"isSphericalVideo":false,"showQualitySelector":true,"qualitySelectorMinStreams":2,"useTwoRows":false,"isCommentAttachment":false,"adBreaks":[],"adBreaksDisableReasons":[],"pollTimestamps":[],"showSpatialAudioNUX":false,"shouldShowWNSNUX":false,"gamesVideoClipButtonEnabled":false,"gamesVideoCreatorClippingGK":false,"gamesDefaultClipLengthInSec":60,"annotatedMomentsOfInterest":{},"showPlayButtonForLive":false,"videoClipInfo":null,"mutedSegments":[],"isWatchIconEligible":false,"shouldShowPermalinkButton":false,"shouldShowInlineCopyLinkOption":true}],1],["__inst_57d19858_0_f",["VideoScrubberPreviewComponent","__inst_a648e52c_0_f"],[{"__m":"__inst_a648e52c_0_f"},{"timeIntervalBetweenImages":0,"previewScrubberWidth":0,"previewScrubberHeight":0,"maxImagesPerSprite":0,"imagesPerRow":0,"hasPreviewThumbnails":false,"spriteIndexToURIMap":{"1":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t15.6481-10\/70556988_2705986562824198_792989604385914880_n.jpg?_nc_cat=111&_nc_ohc=fcY8yTo6vI8AQlZ_yo6ystw31HeACFkjMh4EkjLso4t8_06ABIbHVwNuQ&_nc_ht=scontent-cdg2-1.xx&oh=29bc36fb9cefc5c6b7472bee9840344f&oe=5E91DFC2"},"stereoMode":null,"scrubberVideoURI":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82689171_922739328122635_2854392220759359488_n.mp4?_nc_cat=101&_nc_ohc=DEtiqe5a5TMAQmdCuxyGgdokxouPwHEQx_6-wx8pNu_XLfYsYcvXL2ywQ&_nc_ht=video-cdg2-1.xx&oh=b6093168baae7a1252d8e7e27a8c91cf&oe=5E172769","useScrubberVideo":false}],1],["__inst_8a751efa_0_f",["RelayAsyncDataPreloader","__inst_e9dd2b01_0_f"],[{"actorID":null,"asyncDataPreloader":{"__m":"__inst_e9dd2b01_0_f"},"pinnedStatus":"current_revision","queryID":"2969794079698848","queryVariables":{"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6NDU4NTY3ODcxNjk0NjU5","focusCommentID":null,"isComet":false,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"scale":1,"useDefaultActor":true,"UFI2CommentsProvider_commentsKey":null}}],2],["__inst_8a751efa_0_g",["RelayAsyncDataPreloader","__inst_e9dd2b01_0_g"],[{"actorID":null,"asyncDataPreloader":{"__m":"__inst_e9dd2b01_0_g"},"pinnedStatus":"current_revision","queryID":"2969794079698848","queryVariables":{"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6NzI0MjgwODkxNDMyNjIw","focusCommentID":null,"isComet":false,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"scale":1,"useDefaultActor":true,"UFI2CommentsProvider_commentsKey":null}}],2],["__inst_8a751efa_0_h",["RelayAsyncDataPreloader","__inst_e9dd2b01_0_h"],[{"actorID":null,"asyncDataPreloader":{"__m":"__inst_e9dd2b01_0_h"},"pinnedStatus":"current_revision","queryID":"2969794079698848","queryVariables":{"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjkwODI0MjQ3MjUyOTUxMw==","focusCommentID":null,"isComet":false,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"scale":1,"useDefaultActor":true,"UFI2CommentsProvider_commentsKey":null}}],2],["__inst_70dbca80_0_f",["VideoControls","__inst_a648e52c_0_8","__elem_70dbca80_0_f"],[{"__m":"__inst_a648e52c_0_8"},{"__m":"__elem_70dbca80_0_f"},{"hideOnEvents":{"finish":true,"pause":false,"autoplay":false},"showButtons":{"fullscreen":true,"casting":false,"permalink":false,"watchandscroll":false},"permalinkURL":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/2908242472529513\/","redesign":false,"hidePlaybackControl":false,"showPlaybackRateControl":false,"hideRemainingTime":false,"hideSettings":false,"isLive":false,"isGamingVideo":false,"isLiveRewindEnabled":false,"isSphericalVideo":false,"showQualitySelector":true,"qualitySelectorMinStreams":2,"useTwoRows":false,"isCommentAttachment":false,"adBreaks":[],"adBreaksDisableReasons":[],"pollTimestamps":[],"showSpatialAudioNUX":false,"shouldShowWNSNUX":false,"gamesVideoClipButtonEnabled":false,"gamesVideoCreatorClippingGK":false,"gamesDefaultClipLengthInSec":60,"annotatedMomentsOfInterest":{},"showPlayButtonForLive":false,"videoClipInfo":null,"mutedSegments":[],"isWatchIconEligible":false,"shouldShowPermalinkButton":false,"shouldShowInlineCopyLinkOption":true}],1],["__inst_33c6d1b4_0_0",["MultiBootstrapDataSource"],[{"maxResults":5,"queryData":{"context":"topics","viewer":0,"filter":["page","user"],"include_fans":false,"context_id":0,"rsp":"mentions","post_fbid":781338735704182},"queryEndpoint":"\/ajax\/typeahead\/search.php","bootstrapData":{"rsp":"mentions"},"bootstrapEndpoint":"","enabledLocalCache":true,"enabledMergeUids":true,"disableAllCaches":false,"globalKeywordsEndpoint":"","enforceNewRequestIDUponFetch":false,"bootstrapEndpoints":[{"endpoint":"\/ajax\/typeahead\/first_degree.php","data":{"context":"mentions","viewer":0,"token":"1578485464-7","filter":["page","group","app","event"],"options":["friends_only","nm"]}}]}],1],["__inst_e5ad243d_0_2",["PopoverMenu","__inst_1de146dc_0_2","__elem_072b8e64_0_1","__inst_5b4d0c00_0_2"],[{"__m":"__inst_1de146dc_0_2"},{"__m":"__elem_072b8e64_0_1"},{"__m":"__inst_5b4d0c00_0_2"},[]],1],["__inst_1de146dc_0_2",["Popover","__elem_1de146dc_0_2","__elem_072b8e64_0_1","ContextualLayerAutoFlip","ContextualLayerUpdateOnScroll"],[{"__m":"__elem_1de146dc_0_2"},{"__m":"__elem_072b8e64_0_1"},[{"__m":"ContextualLayerAutoFlip"},{"__m":"ContextualLayerUpdateOnScroll"}],{"alignh":"right","position":"below"}],2],["__inst_41781d56_0_0",["ContextualDialog","CovercardArrow","ContextualDialogXUITheme","LayerHideOnEscape","LayerHideOnTransition","LayerRemoveOnHide","LayerAutoFocus","ContextualLayerAutoFlip","ContextualLayerInlineTabOrder","__markup_a588f507_0_1","HTML"],[{"width":null,"context":null,"contextID":null,"contextSelector":null,"dialogRole":"region","labelledBy":"u_0_eg","position":"above","alignment":"left","offsetX":0,"offsetY":0,"arrowBehavior":{"__m":"CovercardArrow"},"hoverShowDelay":null,"hoverHideDelay":null,"theme":{"__m":"ContextualDialogXUITheme"},"addedBehaviors":[{"__m":"LayerHideOnEscape"},{"__m":"LayerHideOnTransition"},{"__m":"LayerRemoveOnHide"},{"__m":"LayerAutoFocus"},{"__m":"ContextualLayerAutoFlip"},{"__m":"ContextualLayerInlineTabOrder"}],"classNames":["_4-7n"]},{"__m":"__markup_a588f507_0_1"}],2],["__inst_e9dd2b01_0_0",["AsyncDataPreloader"],[{"id":"adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafb8c6469721707411"}],1],["__inst_e9dd2b01_0_1",["AsyncDataPreloader"],[{"id":"adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafb8e5249348664193"}],1],["__inst_e9dd2b01_0_2",["AsyncDataPreloader"],[{"id":"adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafb901ff5e02215040"}],1],["__inst_50478d2c_0_0",["VideoConfig"],[{"ad_client_token":null,"video_id":"2810732512322033","fasterPlay":false,"instantPlay":false,"isSpherical":false,"disableNativeControls":true,"videoData":[{"is_hds":false,"is_hls":false,"video_id":"2810732512322033","is_live_stream":false,"is_servable_via_fbms":false,"rotation":0,"is_facecast_audio":false,"content_category":"general","is_low_latency":false,"desired_latency_ms":null,"latency_tolerance_ms":null,"is_predictive_dash":false,"is_live_trace_enabled_on_player":false,"p2p_settings":null,"ms_param":null,"sd_src_no_ratelimit":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82944047_1748411025284022_7574377033556295680_n.mp4?_nc_cat=106&efg=eyJ2ZW5jb2RlX3RhZyI6InN2ZV9zZCJ9&_nc_ohc=Mk3Pc33VwtUAQkqEed6CvTumezb6MxDPsOttdmleSRyp0Vjc54S2VbZvA&_nc_ht=video-cdg2-1.xx&oh=6f10f945a9ba872d12df8518965c009b&oe=5E1728C5","aspect_ratio":1.7777777777778,"hd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24130-2\/10000000_501753027142921_191115664358885463_n.mp4?_nc_cat=106&efg=eyJ2ZW5jb2RlX3RhZyI6Im9lcF9oZCJ9&_nc_ohc=QbBg6p9dyBoAQmY7ZijVE_cVQofEYCHGkmEUHqc-kqY4HiPWF_CALjlaA&_nc_ht=video-cdg2-1.xx&oh=5fce185465fc77c367a968aaadedc7dc&oe=5EB2D34D","sd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82944047_1748411025284022_7574377033556295680_n.mp4?_nc_cat=106&efg=eyJybHIiOjQzMiwicmxhIjo1MTIsInZlbmNvZGVfdGFnIjoic3ZlX3NkIn0\u00253D&_nc_ohc=Mk3Pc33VwtUAQkqEed6CvTumezb6MxDPsOttdmleSRyp0Vjc54S2VbZvA&rl=432&vabr=240&_nc_ht=video-cdg2-1.xx&oh=6f10f945a9ba872d12df8518965c009b&oe=5E1728C5","hd_tag":"oep_hd","sd_tag":"sve_sd","stream_type":"progressive","live_routing_token":"","projection":"flat","subtitles_src":null,"dash_manifest":null,"dash_prefetched_representation_ids":["589767368531664v","707024063156892ad"],"player_version_overwrite":"pleasantville","spherical_config":{},"is_spherical":false,"original_height":1080,"original_width":1920,"video_url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/2810732512322033\/","is_broadcast":false,"override_config":null,"prefetch_cache":null}],"minQuality":"hd","maxQuality":null,"muted":false,"autoFullscreenHD":false,"subtitlesActive":true,"lazyPreload":false,"onafterloadRegister":false,"abortDummy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/yY\/r\/TeuVRS5nXZn.mp4","VideoPlayerHTML5Shaka":null,"OzDrmHelper":null,"useRateLimited":true,"useEventTime":true,"startTimestamp":null,"disableStreaming":false,"isHighlightEnabled":false,"videoLicenseUriMap":{},"graphApiVideoLicenseUri":null,"p2pModuleLoader":null}],1],["__inst_e9dd2b01_0_3",["AsyncDataPreloader"],[{"id":"adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafbb47ff4614456858"}],1],["__inst_50478d2c_0_1",["VideoConfig"],[{"ad_client_token":null,"video_id":"575551206614901","fasterPlay":false,"instantPlay":false,"isSpherical":false,"disableNativeControls":true,"videoData":[{"is_hds":false,"is_hls":false,"video_id":"575551206614901","is_live_stream":false,"is_servable_via_fbms":false,"rotation":0,"is_facecast_audio":false,"content_category":"general","is_low_latency":false,"desired_latency_ms":null,"latency_tolerance_ms":null,"is_predictive_dash":false,"is_live_trace_enabled_on_player":false,"p2p_settings":null,"ms_param":null,"sd_src_no_ratelimit":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82712489_2474371976118676_8328020975119499264_n.mp4?_nc_cat=105&efg=eyJ2ZW5jb2RlX3RhZyI6InN2ZV9zZCJ9&_nc_ohc=YL0YZP_P6dcAQn8endcxMPAVI7w51_x6M2Bes8UFyg_HmzMaZRYOgj9_A&_nc_ht=video-cdg2-1.xx&oh=2b344b4993d6d7ef942e9bc34af61d26&oe=5E1726DC","aspect_ratio":1.7777777777778,"hd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24130-2\/82419063_1495788330586899_1474480735046121425_n.mp4?_nc_cat=110&efg=eyJ2ZW5jb2RlX3RhZyI6Im9lcF9oZCJ9&_nc_ohc=Yl0wfXaeTZIAQmsy9EJPbGMso_kpQ_RQ3Gj5A123mg0hCueCuSpzo6F2A&_nc_ht=video-cdg2-1.xx&oh=72d829d4c886dde17f07d6964289d2fa&oe=5E99F786","sd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82712489_2474371976118676_8328020975119499264_n.mp4?_nc_cat=105&efg=eyJybHIiOjQxNCwicmxhIjo1MTIsInZlbmNvZGVfdGFnIjoic3ZlX3NkIn0\u00253D&_nc_ohc=YL0YZP_P6dcAQn8endcxMPAVI7w51_x6M2Bes8UFyg_HmzMaZRYOgj9_A&rl=414&vabr=230&_nc_ht=video-cdg2-1.xx&oh=2b344b4993d6d7ef942e9bc34af61d26&oe=5E1726DC","hd_tag":"oep_hd","sd_tag":"sve_sd","stream_type":"progressive","live_routing_token":"","projection":"flat","subtitles_src":null,"dash_manifest":null,"dash_prefetched_representation_ids":["2552505028357129v","1000337817006819ad"],"player_version_overwrite":"pleasantville","spherical_config":{},"is_spherical":false,"original_height":1080,"original_width":1920,"video_url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/575551206614901\/","is_broadcast":false,"override_config":null,"prefetch_cache":null}],"minQuality":"hd","maxQuality":null,"muted":false,"autoFullscreenHD":false,"subtitlesActive":true,"lazyPreload":false,"onafterloadRegister":false,"abortDummy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/yY\/r\/TeuVRS5nXZn.mp4","VideoPlayerHTML5Shaka":null,"OzDrmHelper":null,"useRateLimited":true,"useEventTime":true,"startTimestamp":null,"disableStreaming":false,"isHighlightEnabled":false,"videoLicenseUriMap":{},"graphApiVideoLicenseUri":null,"p2pModuleLoader":null}],1],["__inst_e9dd2b01_0_4",["AsyncDataPreloader"],[{"id":"adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafbcb76b5856587871"}],1],["__inst_e9dd2b01_0_5",["AsyncDataPreloader"],[{"id":"adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafbcdfa27c69510369"}],1],["__inst_e9dd2b01_0_6",["AsyncDataPreloader"],[{"id":"adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafbcf5498795473404"}],1],["__inst_50478d2c_0_2",["VideoConfig"],[{"ad_client_token":null,"video_id":"473117833606224","fasterPlay":false,"instantPlay":false,"isSpherical":false,"disableNativeControls":true,"videoData":[{"is_hds":false,"is_hls":false,"video_id":"473117833606224","is_live_stream":false,"is_servable_via_fbms":false,"rotation":0,"is_facecast_audio":false,"content_category":"general","is_low_latency":false,"desired_latency_ms":null,"latency_tolerance_ms":null,"is_predictive_dash":false,"is_live_trace_enabled_on_player":false,"p2p_settings":null,"ms_param":null,"sd_src_no_ratelimit":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82637263_2695706543854488_3494583213924286464_n.mp4?_nc_cat=110&efg=eyJ2ZW5jb2RlX3RhZyI6InN2ZV9zZCJ9&_nc_ohc=Vdgb1S5_6_UAQn8smcbPeLoyAi3RvmP8dQasc3Xyq7aQV8IGtoLxrKjng&_nc_ht=video-cdg2-1.xx&oh=f581222265ba050e2250e36dc2dfafe5&oe=5E172516","aspect_ratio":1.7777777777778,"hd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24130-2\/10000000_495600064686646_2984974305472341352_n.mp4?_nc_cat=105&efg=eyJ2ZW5jb2RlX3RhZyI6Im9lcF9oZCJ9&_nc_ohc=LFpuO-SgP2oAQk7i7L0TmW1YbGOaHeZg4mW0hAcexyXaUfui-wbVLdAmg&_nc_ht=video-cdg2-1.xx&oh=feeddffd5fe9e8d4d0afff5f792d5ad5&oe=5E9D0C6A","sd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82637263_2695706543854488_3494583213924286464_n.mp4?_nc_cat=110&efg=eyJybHIiOjQ3MSwicmxhIjo1MTIsInZlbmNvZGVfdGFnIjoic3ZlX3NkIn0\u00253D&_nc_ohc=Vdgb1S5_6_UAQn8smcbPeLoyAi3RvmP8dQasc3Xyq7aQV8IGtoLxrKjng&rl=471&vabr=262&_nc_ht=video-cdg2-1.xx&oh=f581222265ba050e2250e36dc2dfafe5&oe=5E172516","hd_tag":"oep_hd","sd_tag":"sve_sd","stream_type":"progressive","live_routing_token":"","projection":"flat","subtitles_src":null,"dash_manifest":null,"dash_prefetched_representation_ids":["592563191542245v","2247759942183351ad"],"player_version_overwrite":"pleasantville","spherical_config":{},"is_spherical":false,"original_height":1080,"original_width":1920,"video_url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/473117833606224\/","is_broadcast":false,"override_config":null,"prefetch_cache":null}],"minQuality":"hd","maxQuality":null,"muted":false,"autoFullscreenHD":false,"subtitlesActive":true,"lazyPreload":false,"onafterloadRegister":false,"abortDummy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/yY\/r\/TeuVRS5nXZn.mp4","VideoPlayerHTML5Shaka":null,"OzDrmHelper":null,"useRateLimited":true,"useEventTime":true,"startTimestamp":null,"disableStreaming":false,"isHighlightEnabled":false,"videoLicenseUriMap":{},"graphApiVideoLicenseUri":null,"p2pModuleLoader":null}],1],["__inst_50478d2c_0_3",["VideoConfig"],[{"ad_client_token":null,"video_id":"2561909697364016","fasterPlay":false,"instantPlay":false,"isSpherical":false,"disableNativeControls":true,"videoData":[{"is_hds":false,"is_hls":false,"video_id":"2561909697364016","is_live_stream":false,"is_servable_via_fbms":true,"rotation":0,"is_facecast_audio":false,"content_category":"general","is_low_latency":false,"desired_latency_ms":0,"latency_tolerance_ms":0,"is_predictive_dash":false,"is_live_trace_enabled_on_player":true,"p2p_settings":null,"ms_param":"ms","aspect_ratio":1.7777777777778,"hd_src":null,"sd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.26565-2\/10000000_1468490509968452_2041740056216943525_n.mp4?_nc_cat=102&efg=eyJ2ZW5jb2RlX3RhZyI6Im9lcF9zZCJ9&_nc_ohc=WVlVlmBqwikAQnXZ4IjniF3lzWvmO9i3DOGY1TaWxx2PVsAWljjydEOgw&_nc_ht=video-cdg2-1.xx&oh=8bce7fa4edf25cf26c7a29d63862f532&oe=5E172CFA","hd_tag":"","sd_tag":"oep_sd","stream_type":"progressive","live_routing_token":"","projection":"flat","subtitles_src":null,"dash_manifest":null,"dash_prefetched_representation_ids":["774582576380085vd","468130323897142ad"],"player_version_overwrite":"pleasantville","spherical_config":{},"is_spherical":false,"original_height":720,"original_width":1280,"video_url":"https:\/\/www.facebook.com\/ChinaGlobalTVNetwork\/videos\/2561909697364016\/","is_broadcast":true,"override_config":null,"prefetch_cache":null}],"minQuality":null,"maxQuality":null,"muted":false,"autoFullscreenHD":false,"subtitlesActive":true,"lazyPreload":false,"onafterloadRegister":false,"abortDummy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/yY\/r\/TeuVRS5nXZn.mp4","VideoPlayerHTML5Shaka":null,"OzDrmHelper":null,"useRateLimited":true,"useEventTime":true,"startTimestamp":null,"disableStreaming":false,"isHighlightEnabled":false,"videoLicenseUriMap":{},"graphApiVideoLicenseUri":null,"p2pModuleLoader":null}],1],["__inst_50478d2c_0_4",["VideoConfig"],[{"ad_client_token":null,"video_id":"2525520257557521","fasterPlay":false,"instantPlay":false,"isSpherical":false,"disableNativeControls":true,"videoData":[{"is_hds":false,"is_hls":false,"video_id":"2525520257557521","is_live_stream":false,"is_servable_via_fbms":false,"rotation":0,"is_facecast_audio":false,"content_category":"general","is_low_latency":false,"desired_latency_ms":null,"latency_tolerance_ms":null,"is_predictive_dash":false,"is_live_trace_enabled_on_player":false,"p2p_settings":null,"ms_param":null,"sd_src_no_ratelimit":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82727799_1004035596637897_6384450112201949184_n.mp4?_nc_cat=109&efg=eyJ2ZW5jb2RlX3RhZyI6InN2ZV9zZCJ9&_nc_ohc=qji72-WvklwAQnsExZClFHzM-q-ApMjHepmnUCGuZt2jYIHrV8r-Z1zxw&_nc_ht=video-cdg2-1.xx&oh=e6084ae33872d8130d56ef4e6304172d&oe=5E172E37","aspect_ratio":1.7777777777778,"hd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24130-2\/82383667_829754537476688_816011511251629139_n.mp4?_nc_cat=111&efg=eyJ2ZW5jb2RlX3RhZyI6Im9lcF9oZCJ9&_nc_ohc=u1pCowpWQ1kAQl2r0SVz_WKpbh-zb0I3vSSQG1h_DYv9QXItYEeT7iqkQ&_nc_ht=video-cdg2-1.xx&oh=12121d39db6f5519f99a9e3e2059a750&oe=5EA236CB","sd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82727799_1004035596637897_6384450112201949184_n.mp4?_nc_cat=109&efg=eyJybHIiOjMwMCwicmxhIjo1MTIsInZlbmNvZGVfdGFnIjoic3ZlX3NkIn0\u00253D&_nc_ohc=qji72-WvklwAQnsExZClFHzM-q-ApMjHepmnUCGuZt2jYIHrV8r-Z1zxw&rl=300&vabr=105&_nc_ht=video-cdg2-1.xx&oh=e6084ae33872d8130d56ef4e6304172d&oe=5E172E37","hd_tag":"oep_hd","sd_tag":"sve_sd","stream_type":"progressive","live_routing_token":"","projection":"flat","subtitles_src":null,"dash_manifest":null,"dash_prefetched_representation_ids":["1233083333693226v","1516216388526227ad"],"player_version_overwrite":"pleasantville","spherical_config":{},"is_spherical":false,"original_height":1080,"original_width":1920,"video_url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/2525520257557521\/","is_broadcast":false,"override_config":null,"prefetch_cache":null}],"minQuality":"hd","maxQuality":null,"muted":false,"autoFullscreenHD":false,"subtitlesActive":true,"lazyPreload":false,"onafterloadRegister":false,"abortDummy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/yY\/r\/TeuVRS5nXZn.mp4","VideoPlayerHTML5Shaka":null,"OzDrmHelper":null,"useRateLimited":true,"useEventTime":true,"startTimestamp":null,"disableStreaming":false,"isHighlightEnabled":false,"videoLicenseUriMap":{},"graphApiVideoLicenseUri":null,"p2pModuleLoader":null}],1],["__inst_50478d2c_0_5",["VideoConfig"],[{"ad_client_token":null,"video_id":"2658816227487174","fasterPlay":false,"instantPlay":false,"isSpherical":false,"disableNativeControls":true,"videoData":[{"is_hds":false,"is_hls":false,"video_id":"2658816227487174","is_live_stream":false,"is_servable_via_fbms":false,"rotation":0,"is_facecast_audio":false,"content_category":"general","is_low_latency":false,"desired_latency_ms":null,"latency_tolerance_ms":null,"is_predictive_dash":false,"is_live_trace_enabled_on_player":false,"p2p_settings":null,"ms_param":null,"sd_src_no_ratelimit":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82469326_622077655271018_6092763485672833024_n.mp4?_nc_cat=108&efg=eyJ2ZW5jb2RlX3RhZyI6InN2ZV9zZCJ9&_nc_ohc=g7guCi8wFX8AQlbP2nvApBt-xZfHABZ3Tbp68pceOqhfkZ7USZ4qi3Xnw&_nc_ht=video-cdg2-1.xx&oh=e9bd2ef8c4a82452f22683c72d06a424&oe=5E173061","aspect_ratio":1.7777777777778,"hd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24130-2\/10000000_589312661888903_175785577589703773_n.mp4?_nc_cat=105&efg=eyJ2ZW5jb2RlX3RhZyI6Im9lcF9oZCJ9&_nc_ohc=CCWAjiqt8HkAQlaVVyiYgGMfO7Q59l5yVS01_E-rnj6XT2auR8iqXllFQ&_nc_ht=video-cdg2-1.xx&oh=cf04ee525b3562de776c80dbc58fef40&oe=5E9A0E31","sd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82469326_622077655271018_6092763485672833024_n.mp4?_nc_cat=108&efg=eyJybHIiOjM1MiwicmxhIjo1MTIsInZlbmNvZGVfdGFnIjoic3ZlX3NkIn0\u00253D&_nc_ohc=g7guCi8wFX8AQlbP2nvApBt-xZfHABZ3Tbp68pceOqhfkZ7USZ4qi3Xnw&rl=352&vabr=196&_nc_ht=video-cdg2-1.xx&oh=e9bd2ef8c4a82452f22683c72d06a424&oe=5E173061","hd_tag":"oep_hd","sd_tag":"sve_sd","stream_type":"progressive","live_routing_token":"","projection":"flat","subtitles_src":null,"dash_manifest":null,"dash_prefetched_representation_ids":["673305303074436v","2681152778643497ad"],"player_version_overwrite":"pleasantville","spherical_config":{},"is_spherical":false,"original_height":1080,"original_width":1920,"video_url":"https:\/\/www.facebook.com\/ChinaGlobalTVNetwork\/videos\/2658816227487174\/","is_broadcast":false,"override_config":null,"prefetch_cache":null}],"minQuality":"hd","maxQuality":null,"muted":false,"autoFullscreenHD":false,"subtitlesActive":true,"lazyPreload":false,"onafterloadRegister":false,"abortDummy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/yY\/r\/TeuVRS5nXZn.mp4","VideoPlayerHTML5Shaka":null,"OzDrmHelper":null,"useRateLimited":true,"useEventTime":true,"startTimestamp":null,"disableStreaming":false,"isHighlightEnabled":false,"videoLicenseUriMap":{},"graphApiVideoLicenseUri":null,"p2pModuleLoader":null}],1],["__inst_50478d2c_0_6",["VideoConfig"],[{"ad_client_token":null,"video_id":"603020973807861","fasterPlay":false,"instantPlay":false,"isSpherical":false,"disableNativeControls":true,"videoData":[{"is_hds":false,"is_hls":false,"video_id":"603020973807861","is_live_stream":false,"is_servable_via_fbms":false,"rotation":0,"is_facecast_audio":false,"content_category":"general","is_low_latency":false,"desired_latency_ms":null,"latency_tolerance_ms":null,"is_predictive_dash":false,"is_live_trace_enabled_on_player":false,"p2p_settings":null,"ms_param":null,"sd_src_no_ratelimit":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82703493_1053372161678731_1490354463460818944_n.mp4?_nc_cat=104&efg=eyJ2ZW5jb2RlX3RhZyI6InN2ZV9zZCJ9&_nc_ohc=NO0Sr7tzrDoAQn5kS2Tw0E2SfVnChzTy9APXkcRcs4szdKsejwGDEi9EA&_nc_ht=video-cdg2-1.xx&oh=8fbd7e3b1463fa11600f7aa562c99cbe&oe=5E172DCB","aspect_ratio":1.7777777777778,"hd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24130-2\/82826800_615877932517294_3806541007925287085_n.mp4?_nc_cat=101&efg=eyJ2ZW5jb2RlX3RhZyI6Im9lcF9oZCJ9&_nc_ohc=OmFLoBUa3EQAQkq-loUXajbvFYT2e6dk7VGwltdVl80I3aj_7lFiDU2YQ&_nc_ht=video-cdg2-1.xx&oh=0e227bacd4cd5336e3d4f786c61621dc&oe=5E901A4D","sd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82703493_1053372161678731_1490354463460818944_n.mp4?_nc_cat=104&efg=eyJybHIiOjMwMCwicmxhIjo1MTIsInZlbmNvZGVfdGFnIjoic3ZlX3NkIn0\u00253D&_nc_ohc=NO0Sr7tzrDoAQn5kS2Tw0E2SfVnChzTy9APXkcRcs4szdKsejwGDEi9EA&rl=300&vabr=110&_nc_ht=video-cdg2-1.xx&oh=8fbd7e3b1463fa11600f7aa562c99cbe&oe=5E172DCB","hd_tag":"oep_hd","sd_tag":"sve_sd","stream_type":"progressive","live_routing_token":"","projection":"flat","subtitles_src":null,"dash_manifest":null,"dash_prefetched_representation_ids":["598153427665171v","488372048487102ad"],"player_version_overwrite":"pleasantville","spherical_config":{},"is_spherical":false,"original_height":1080,"original_width":1920,"video_url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/603020973807861\/","is_broadcast":false,"override_config":null,"prefetch_cache":null}],"minQuality":"hd","maxQuality":null,"muted":false,"autoFullscreenHD":false,"subtitlesActive":true,"lazyPreload":false,"onafterloadRegister":false,"abortDummy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/yY\/r\/TeuVRS5nXZn.mp4","VideoPlayerHTML5Shaka":null,"OzDrmHelper":null,"useRateLimited":true,"useEventTime":true,"startTimestamp":null,"disableStreaming":false,"isHighlightEnabled":false,"videoLicenseUriMap":{},"graphApiVideoLicenseUri":null,"p2pModuleLoader":null}],1],["__inst_50478d2c_0_7",["VideoConfig"],[{"ad_client_token":null,"video_id":"764719224037291","fasterPlay":false,"instantPlay":false,"isSpherical":false,"disableNativeControls":true,"videoData":[{"is_hds":false,"is_hls":false,"video_id":"764719224037291","is_live_stream":false,"is_servable_via_fbms":false,"rotation":0,"is_facecast_audio":false,"content_category":"general","is_low_latency":false,"desired_latency_ms":null,"latency_tolerance_ms":null,"is_predictive_dash":false,"is_live_trace_enabled_on_player":false,"p2p_settings":null,"ms_param":null,"sd_src_no_ratelimit":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82535671_459090011712105_8153756572619636736_n.mp4?_nc_cat=104&efg=eyJ2ZW5jb2RlX3RhZyI6InN2ZV9zZCJ9&_nc_ohc=q-bqYZsDbnIAQnL2J60_J12at-ejAm0uEMqx-3vtip6yFC4CcxlB04OUg&_nc_ht=video-cdg2-1.xx&oh=a23add64b0e90e33c633ab113caf7e23&oe=5E173F21","aspect_ratio":1.7777777777778,"hd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24130-2\/82502391_1398414970337144_4759654017911032142_n.mp4?_nc_cat=110&efg=eyJ2ZW5jb2RlX3RhZyI6Im9lcF9oZCJ9&_nc_ohc=GlMTP5UTAY0AQk9dwt4QDjolP8pkux7EGQsfLD4SQSf2KpS6ldAWgbPHQ&_nc_ht=video-cdg2-1.xx&oh=717f13052f96c2047181f244d2a0aeef&oe=5E9ED6DF","sd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82535671_459090011712105_8153756572619636736_n.mp4?_nc_cat=104&efg=eyJybHIiOjMwMCwicmxhIjo1MTIsInZlbmNvZGVfdGFnIjoic3ZlX3NkIn0\u00253D&_nc_ohc=q-bqYZsDbnIAQnL2J60_J12at-ejAm0uEMqx-3vtip6yFC4CcxlB04OUg&rl=300&vabr=152&_nc_ht=video-cdg2-1.xx&oh=a23add64b0e90e33c633ab113caf7e23&oe=5E173F21","hd_tag":"oep_hd","sd_tag":"sve_sd","stream_type":"progressive","live_routing_token":"","projection":"flat","subtitles_src":null,"dash_manifest":null,"dash_prefetched_representation_ids":["770502356767393v","982020942154643ad"],"player_version_overwrite":"pleasantville","spherical_config":{},"is_spherical":false,"original_height":1080,"original_width":1920,"video_url":"https:\/\/www.facebook.com\/ChinaGlobalTVNetwork\/videos\/764719224037291\/","is_broadcast":false,"override_config":null,"prefetch_cache":null}],"minQuality":"hd","maxQuality":null,"muted":false,"autoFullscreenHD":false,"subtitlesActive":true,"lazyPreload":false,"onafterloadRegister":false,"abortDummy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/yY\/r\/TeuVRS5nXZn.mp4","VideoPlayerHTML5Shaka":null,"OzDrmHelper":null,"useRateLimited":true,"useEventTime":true,"startTimestamp":null,"disableStreaming":false,"isHighlightEnabled":false,"videoLicenseUriMap":{},"graphApiVideoLicenseUri":null,"p2pModuleLoader":null}],1],["__inst_50478d2c_0_8",["VideoConfig"],[{"ad_client_token":null,"video_id":"2908242472529513","fasterPlay":false,"instantPlay":false,"isSpherical":false,"disableNativeControls":true,"videoData":[{"is_hds":false,"is_hls":false,"video_id":"2908242472529513","is_live_stream":false,"is_servable_via_fbms":false,"rotation":0,"is_facecast_audio":false,"content_category":"general","is_low_latency":false,"desired_latency_ms":null,"latency_tolerance_ms":null,"is_predictive_dash":false,"is_live_trace_enabled_on_player":false,"p2p_settings":null,"ms_param":null,"sd_src_no_ratelimit":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82992142_2713382312075901_7746709714385240064_n.mp4?_nc_cat=100&efg=eyJ2ZW5jb2RlX3RhZyI6InN2ZV9zZCJ9&_nc_ohc=4xh7W2e6KT8AQmJVtkLgnZGvwzWMG4f7sGLZ_obdGqlJrzwjis6YeuGFQ&_nc_ht=video-cdg2-1.xx&oh=ad1b47dec21203dd5f7724bf1af37318&oe=5E172EA4","aspect_ratio":1.7777777777778,"hd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24130-2\/82982021_518756452179992_2779906085641255720_n.mp4?_nc_cat=106&efg=eyJ2ZW5jb2RlX3RhZyI6Im9lcF9oZCJ9&_nc_ohc=3VxNHx3B8GkAQn0j2ZPpaNcl7iPq85rX5m8EH_OsdzUFHM1wXHyunFsEw&_nc_ht=video-cdg2-1.xx&oh=5d45f8dea3013ef569153fa2b44bb937&oe=5E932354","sd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82992142_2713382312075901_7746709714385240064_n.mp4?_nc_cat=100&efg=eyJybHIiOjMwMCwicmxhIjo1MTIsInZlbmNvZGVfdGFnIjoic3ZlX3NkIn0\u00253D&_nc_ohc=4xh7W2e6KT8AQmJVtkLgnZGvwzWMG4f7sGLZ_obdGqlJrzwjis6YeuGFQ&rl=300&vabr=108&_nc_ht=video-cdg2-1.xx&oh=ad1b47dec21203dd5f7724bf1af37318&oe=5E172EA4","hd_tag":"oep_hd","sd_tag":"sve_sd","stream_type":"progressive","live_routing_token":"","projection":"flat","subtitles_src":null,"dash_manifest":null,"dash_prefetched_representation_ids":["613666739177611v","1271591933036183ad"],"player_version_overwrite":"pleasantville","spherical_config":{},"is_spherical":false,"original_height":1080,"original_width":1920,"video_url":"\/cgtnamerica\/videos\/2908242472529513\/","is_broadcast":false,"override_config":null,"prefetch_cache":null}],"minQuality":"hd","maxQuality":null,"muted":false,"autoFullscreenHD":false,"subtitlesActive":true,"lazyPreload":false,"onafterloadRegister":false,"abortDummy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/yY\/r\/TeuVRS5nXZn.mp4","VideoPlayerHTML5Shaka":null,"OzDrmHelper":null,"useRateLimited":true,"useEventTime":true,"startTimestamp":null,"disableStreaming":false,"isHighlightEnabled":false,"videoLicenseUriMap":{},"graphApiVideoLicenseUri":null,"p2pModuleLoader":null}],1],["__inst_50478d2c_0_9",["VideoConfig"],[{"ad_client_token":null,"video_id":"1054162518271150","fasterPlay":false,"instantPlay":false,"isSpherical":false,"disableNativeControls":true,"videoData":[{"is_hds":false,"is_hls":false,"video_id":"1054162518271150","is_live_stream":false,"is_servable_via_fbms":false,"rotation":0,"is_facecast_audio":false,"content_category":"general","is_low_latency":false,"desired_latency_ms":null,"latency_tolerance_ms":null,"is_predictive_dash":false,"is_live_trace_enabled_on_player":false,"p2p_settings":null,"ms_param":null,"sd_src_no_ratelimit":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82675153_478235853072601_6206743997788979200_n.mp4?_nc_cat=103&efg=eyJ2ZW5jb2RlX3RhZyI6InN2ZV9zZCJ9&_nc_ohc=O5zCQSX6B00AQnyiAzX1_rFdqP6U3_hJyiirj81UC2qLJzGUUJtB_1gMw&_nc_ht=video-cdg2-1.xx&oh=356e7dd8f305b06cd3bc8be4db9bd2fe&oe=5E172FB9","aspect_ratio":1.7777777777778,"hd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24130-2\/82992258_488023235431538_3899169863183875533_n.mp4?_nc_cat=102&efg=eyJ2ZW5jb2RlX3RhZyI6Im9lcF9oZCJ9&_nc_ohc=FZg1HlI_ypsAQmPt1iPCJO5ng2-_dsouIZdjDhSENFzTfHR8DwU52BSLA&_nc_ht=video-cdg2-1.xx&oh=0735091021ac563b5b4be2254a70e72d&oe=5EA2C86D","sd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82675153_478235853072601_6206743997788979200_n.mp4?_nc_cat=103&efg=eyJybHIiOjMwMCwicmxhIjo1MTIsInZlbmNvZGVfdGFnIjoic3ZlX3NkIn0\u00253D&_nc_ohc=O5zCQSX6B00AQnyiAzX1_rFdqP6U3_hJyiirj81UC2qLJzGUUJtB_1gMw&rl=300&vabr=108&_nc_ht=video-cdg2-1.xx&oh=356e7dd8f305b06cd3bc8be4db9bd2fe&oe=5E172FB9","hd_tag":"oep_hd","sd_tag":"sve_sd","stream_type":"progressive","live_routing_token":"","projection":"flat","subtitles_src":null,"dash_manifest":null,"dash_prefetched_representation_ids":["468342247197121v","2492400061080512ad"],"player_version_overwrite":"pleasantville","spherical_config":{},"is_spherical":false,"original_height":1080,"original_width":1920,"video_url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/1054162518271150\/","is_broadcast":false,"override_config":null,"prefetch_cache":null}],"minQuality":"hd","maxQuality":null,"muted":false,"autoFullscreenHD":false,"subtitlesActive":true,"lazyPreload":false,"onafterloadRegister":false,"abortDummy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/yY\/r\/TeuVRS5nXZn.mp4","VideoPlayerHTML5Shaka":null,"OzDrmHelper":null,"useRateLimited":true,"useEventTime":true,"startTimestamp":null,"disableStreaming":false,"isHighlightEnabled":false,"videoLicenseUriMap":{},"graphApiVideoLicenseUri":null,"p2pModuleLoader":null}],1],["__inst_50478d2c_0_a",["VideoConfig"],[{"ad_client_token":null,"video_id":"781338735704182","fasterPlay":false,"instantPlay":false,"isSpherical":false,"disableNativeControls":true,"videoData":[{"is_hds":false,"is_hls":false,"video_id":"781338735704182","is_live_stream":true,"is_servable_via_fbms":false,"rotation":0,"is_facecast_audio":false,"content_category":"general","is_low_latency":false,"desired_latency_ms":0,"latency_tolerance_ms":0,"is_predictive_dash":false,"is_live_trace_enabled_on_player":true,"p2p_settings":null,"ms_param":"ms","aspect_ratio":1.7777777777778,"hd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/hvideo-frc3-atn\/_nc_cat-103\/v\/rPQTU86bOI5a3pX_m-8BF\/live-dash\/dash-abr-ibr-audio\/2662003957228193.mpd?_nc_rl=AfAKDX6Ibl-l7m-J&oh=0faf175ffb4953ce177708be83301a4b&oe=5E199D67","sd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/hvideo-frc3-atn\/_nc_cat-103\/v\/rPQTU86bOI5a3pX_m-8BF\/live-dash\/dash-abr-ibr-audio\/2662003957228193.mpd?_nc_rl=AfDmyERQVsyoUoCD&oh=4a6ad646ede99af0e32dd89ab1bc2bfa&oe=5E199D67","hd_tag":"","sd_tag":"","stream_type":"dash","live_routing_token":"","projection":"flat","subtitles_src":null,"dash_manifest":null,"dash_prefetched_representation_ids":null,"player_version_overwrite":"pleasantville","spherical_config":{},"is_spherical":false,"original_height":360,"original_width":640,"video_url":"\/cgtnamerica\/videos\/781338735704182\/","is_broadcast":true,"override_config":null,"prefetch_cache":null}],"minQuality":"hd","maxQuality":null,"muted":false,"autoFullscreenHD":false,"subtitlesActive":true,"lazyPreload":false,"onafterloadRegister":false,"abortDummy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/yY\/r\/TeuVRS5nXZn.mp4","VideoPlayerHTML5Shaka":null,"OzDrmHelper":null,"useRateLimited":true,"useEventTime":true,"startTimestamp":null,"disableStreaming":false,"isHighlightEnabled":false,"videoLicenseUriMap":{},"graphApiVideoLicenseUri":null,"p2pModuleLoader":null}],1],["__inst_e9dd2b01_0_7",["AsyncDataPreloader"],[{"id":"adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafc19ed03506741867"}],1],["__inst_e9dd2b01_0_8",["AsyncDataPreloader"],[{"id":"adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafc1b1814359929564"}],1],["__inst_e9dd2b01_0_9",["AsyncDataPreloader"],[{"id":"adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafc1c31f3227794836"}],1],["__inst_e9dd2b01_0_a",["AsyncDataPreloader"],[{"id":"adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafc1d67f1555220785"}],1],["__inst_50478d2c_0_b",["VideoConfig"],[{"ad_client_token":null,"video_id":"2600764323543751","fasterPlay":false,"instantPlay":false,"isSpherical":false,"disableNativeControls":true,"videoData":[{"is_hds":false,"is_hls":false,"video_id":"2600764323543751","is_live_stream":false,"is_servable_via_fbms":false,"rotation":0,"is_facecast_audio":false,"content_category":"general","is_low_latency":false,"desired_latency_ms":null,"latency_tolerance_ms":null,"is_predictive_dash":false,"is_live_trace_enabled_on_player":false,"p2p_settings":null,"ms_param":null,"sd_src_no_ratelimit":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82506127_604940213407800_8309697712626860032_n.mp4?_nc_cat=100&efg=eyJ2ZW5jb2RlX3RhZyI6InN2ZV9zZCJ9&_nc_ohc=rVjJrinirHcAQmIkqc9-kEN1qAX0EeF6d85f7SPPRjdeo71dmZXmR_q5A&_nc_ht=video-cdg2-1.xx&oh=e246c875997d042c0c9e16883793b163&oe=5E172568","aspect_ratio":1.7777777777778,"hd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24130-2\/10000000_137039780598673_1706883427506091558_n.mp4?_nc_cat=104&efg=eyJ2ZW5jb2RlX3RhZyI6Im9lcF9oZCJ9&_nc_ohc=xxcSrGyZGxIAQnkhbo9O-I82pgOTHPGsbQKUz5hb7hDJLU3NrLjjficDw&_nc_ht=video-cdg2-1.xx&oh=4debbbf538b53de24c4c3caeee04d9d1&oe=5E9B8456","sd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82506127_604940213407800_8309697712626860032_n.mp4?_nc_cat=100&efg=eyJybHIiOjM4MywicmxhIjo1MzEsInZlbmNvZGVfdGFnIjoic3ZlX3NkIn0\u00253D&_nc_ohc=rVjJrinirHcAQmIkqc9-kEN1qAX0EeF6d85f7SPPRjdeo71dmZXmR_q5A&rl=383&vabr=213&_nc_ht=video-cdg2-1.xx&oh=e246c875997d042c0c9e16883793b163&oe=5E172568","hd_tag":"oep_hd","sd_tag":"sve_sd","stream_type":"progressive","live_routing_token":"","projection":"flat","subtitles_src":null,"dash_manifest":null,"dash_prefetched_representation_ids":["448107126143342v","2637693923183912ad"],"player_version_overwrite":"pleasantville","spherical_config":{},"is_spherical":false,"original_height":1080,"original_width":1920,"video_url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/2600764323543751\/","is_broadcast":false,"override_config":null,"prefetch_cache":null}],"minQuality":"hd","maxQuality":null,"muted":false,"autoFullscreenHD":false,"subtitlesActive":true,"lazyPreload":false,"onafterloadRegister":false,"abortDummy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/yY\/r\/TeuVRS5nXZn.mp4","VideoPlayerHTML5Shaka":null,"OzDrmHelper":null,"useRateLimited":true,"useEventTime":true,"startTimestamp":null,"disableStreaming":false,"isHighlightEnabled":false,"videoLicenseUriMap":{},"graphApiVideoLicenseUri":null,"p2pModuleLoader":null}],1],["__inst_e9dd2b01_0_b",["AsyncDataPreloader"],[{"id":"adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafc1f4618450142931"}],1],["__inst_e9dd2b01_0_c",["AsyncDataPreloader"],[{"id":"adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafc224f40763499187"}],1],["__inst_e9dd2b01_0_d",["AsyncDataPreloader"],[{"id":"adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafc24c495e44771765"}],1],["__inst_e9dd2b01_0_e",["AsyncDataPreloader"],[{"id":"adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafc28e854714175710"}],1],["__inst_50478d2c_0_c",["VideoConfig"],[{"ad_client_token":null,"video_id":"476132016429785","fasterPlay":false,"instantPlay":false,"isSpherical":false,"disableNativeControls":true,"videoData":[{"is_hds":false,"is_hls":false,"video_id":"476132016429785","is_live_stream":false,"is_servable_via_fbms":false,"rotation":0,"is_facecast_audio":false,"content_category":"general","is_low_latency":false,"desired_latency_ms":null,"latency_tolerance_ms":null,"is_predictive_dash":false,"is_live_trace_enabled_on_player":false,"p2p_settings":null,"ms_param":null,"sd_src_no_ratelimit":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82708841_486259762073891_5857473782649716736_n.mp4?_nc_cat=108&efg=eyJ2ZW5jb2RlX3RhZyI6InN2ZV9zZCJ9&_nc_ohc=7lWkkd1JJJUAQltovA_OlUsYId5Eivxq80YgusDJhcTFGfTGIOJrPP_3g&_nc_ht=video-cdg2-1.xx&oh=7a5e1bc12e58de98068ef106fc66cbb4&oe=5E17250E","aspect_ratio":1.7777777777778,"hd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24130-2\/10000000_180539046397269_8120441889449794077_n.mp4?_nc_cat=108&efg=eyJ2ZW5jb2RlX3RhZyI6Im9lcF9oZCJ9&_nc_ohc=7e2k2vJVhOQAQlXUt4au5UYgo8Q9Y_rzv_H5BMEPzBiwzyzJj_1ljEqLA&_nc_ht=video-cdg2-1.xx&oh=75a41adba91f67d905e41a3ead3c3665&oe=5EAFCE95","sd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82708841_486259762073891_5857473782649716736_n.mp4?_nc_cat=108&efg=eyJybHIiOjQ5NiwicmxhIjo1MTIsInZlbmNvZGVfdGFnIjoic3ZlX3NkIn0\u00253D&_nc_ohc=7lWkkd1JJJUAQltovA_OlUsYId5Eivxq80YgusDJhcTFGfTGIOJrPP_3g&rl=496&vabr=276&_nc_ht=video-cdg2-1.xx&oh=7a5e1bc12e58de98068ef106fc66cbb4&oe=5E17250E","hd_tag":"oep_hd","sd_tag":"sve_sd","stream_type":"progressive","live_routing_token":"","projection":"flat","subtitles_src":null,"dash_manifest":null,"dash_prefetched_representation_ids":["565284220694738v","726562477752116ad"],"player_version_overwrite":"pleasantville","spherical_config":{},"is_spherical":false,"original_height":1080,"original_width":1920,"video_url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/476132016429785\/","is_broadcast":false,"override_config":null,"prefetch_cache":null}],"minQuality":"hd","maxQuality":null,"muted":false,"autoFullscreenHD":false,"subtitlesActive":true,"lazyPreload":false,"onafterloadRegister":false,"abortDummy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/yY\/r\/TeuVRS5nXZn.mp4","VideoPlayerHTML5Shaka":null,"OzDrmHelper":null,"useRateLimited":true,"useEventTime":true,"startTimestamp":null,"disableStreaming":false,"isHighlightEnabled":false,"videoLicenseUriMap":{},"graphApiVideoLicenseUri":null,"p2pModuleLoader":null}],1],["__inst_50478d2c_0_d",["VideoConfig"],[{"ad_client_token":null,"video_id":"1344692685696690","fasterPlay":false,"instantPlay":false,"isSpherical":false,"disableNativeControls":true,"videoData":[{"is_hds":false,"is_hls":false,"video_id":"1344692685696690","is_live_stream":false,"is_servable_via_fbms":false,"rotation":0,"is_facecast_audio":false,"content_category":"general","is_low_latency":false,"desired_latency_ms":null,"latency_tolerance_ms":null,"is_predictive_dash":false,"is_live_trace_enabled_on_player":false,"p2p_settings":null,"ms_param":null,"sd_src_no_ratelimit":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82725204_496692124316776_7806353422713618432_n.mp4?_nc_cat=104&efg=eyJ2ZW5jb2RlX3RhZyI6InN2ZV9zZCJ9&_nc_ohc=Qh9qnysepxgAQkZmw5dhLf7Q0r_hxQi_HL70VDbEBxEXrVA9s8gEGp4-A&_nc_ht=video-cdg2-1.xx&oh=f02c0854aab825cf6dccb25e9338530a&oe=5E17242E","aspect_ratio":1.7777777777778,"hd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24130-2\/82522769_2873425949354422_9031285795178512843_n.mp4?_nc_cat=107&efg=eyJ2ZW5jb2RlX3RhZyI6Im9lcF9oZCJ9&_nc_ohc=_eJPJdQdwagAQnoh-EBX5O75euok80fNvQYFxWPDY0fSBNWCtzY04NJzw&_nc_ht=video-cdg2-1.xx&oh=45afefad8cb8708085f8b4dac1063411&oe=5EAA0EC0","sd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82725204_496692124316776_7806353422713618432_n.mp4?_nc_cat=104&efg=eyJybHIiOjMwMCwicmxhIjo1MTIsInZlbmNvZGVfdGFnIjoic3ZlX3NkIn0\u00253D&_nc_ohc=Qh9qnysepxgAQkZmw5dhLf7Q0r_hxQi_HL70VDbEBxEXrVA9s8gEGp4-A&rl=300&vabr=108&_nc_ht=video-cdg2-1.xx&oh=f02c0854aab825cf6dccb25e9338530a&oe=5E17242E","hd_tag":"oep_hd","sd_tag":"sve_sd","stream_type":"progressive","live_routing_token":"","projection":"flat","subtitles_src":null,"dash_manifest":null,"dash_prefetched_representation_ids":["593548821429812v","2542373366083661ad"],"player_version_overwrite":"pleasantville","spherical_config":{},"is_spherical":false,"original_height":1080,"original_width":1920,"video_url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/1344692685696690\/","is_broadcast":false,"override_config":null,"prefetch_cache":null}],"minQuality":"hd","maxQuality":null,"muted":false,"autoFullscreenHD":false,"subtitlesActive":true,"lazyPreload":false,"onafterloadRegister":false,"abortDummy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/yY\/r\/TeuVRS5nXZn.mp4","VideoPlayerHTML5Shaka":null,"OzDrmHelper":null,"useRateLimited":true,"useEventTime":true,"startTimestamp":null,"disableStreaming":false,"isHighlightEnabled":false,"videoLicenseUriMap":{},"graphApiVideoLicenseUri":null,"p2pModuleLoader":null}],1],["__inst_50478d2c_0_e",["VideoConfig"],[{"ad_client_token":null,"video_id":"458567871694659","fasterPlay":false,"instantPlay":false,"isSpherical":false,"disableNativeControls":true,"videoData":[{"is_hds":false,"is_hls":false,"video_id":"458567871694659","is_live_stream":false,"is_servable_via_fbms":false,"rotation":0,"is_facecast_audio":false,"content_category":"general","is_low_latency":false,"desired_latency_ms":null,"latency_tolerance_ms":null,"is_predictive_dash":false,"is_live_trace_enabled_on_player":false,"p2p_settings":null,"ms_param":null,"sd_src_no_ratelimit":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82741442_2680928275354879_2236332738804187136_n.mp4?_nc_cat=108&efg=eyJ2ZW5jb2RlX3RhZyI6InN2ZV9zZCJ9&_nc_ohc=RSg9Z2LEZRUAQkRlAwdFHVWSVbqMTKxjRREY1bSo2gJwzbenAfgYs2VaA&_nc_ht=video-cdg2-1.xx&oh=9a39d5bbe0264d236277ea6a5b912230&oe=5E17244A","aspect_ratio":1.7777777777778,"hd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24130-2\/10000000_173709720375976_6084592589894240749_n.mp4?_nc_cat=100&efg=eyJ2ZW5jb2RlX3RhZyI6Im9lcF9oZCJ9&_nc_ohc=lt8Oy7L8xW8AQlFQg5hvRCbNwYlpYtXYGZ1J2a55rEN_a5W8fAMIKPVOQ&_nc_ht=video-cdg2-1.xx&oh=0ae2a1ffb81d4bc1f8e7ef730cdc598c&oe=5EA409F4","sd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/82741442_2680928275354879_2236332738804187136_n.mp4?_nc_cat=108&efg=eyJybHIiOjM1NiwicmxhIjo1MTIsInZlbmNvZGVfdGFnIjoic3ZlX3NkIn0\u00253D&_nc_ohc=RSg9Z2LEZRUAQkRlAwdFHVWSVbqMTKxjRREY1bSo2gJwzbenAfgYs2VaA&rl=356&vabr=198&_nc_ht=video-cdg2-1.xx&oh=9a39d5bbe0264d236277ea6a5b912230&oe=5E17244A","hd_tag":"oep_hd","sd_tag":"sve_sd","stream_type":"progressive","live_routing_token":"","projection":"flat","subtitles_src":null,"dash_manifest":null,"dash_prefetched_representation_ids":["2463990987194327v","1051092761900993ad"],"player_version_overwrite":"pleasantville","spherical_config":{},"is_spherical":false,"original_height":1080,"original_width":1920,"video_url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/458567871694659\/","is_broadcast":false,"override_config":null,"prefetch_cache":null}],"minQuality":"hd","maxQuality":null,"muted":false,"autoFullscreenHD":false,"subtitlesActive":true,"lazyPreload":false,"onafterloadRegister":false,"abortDummy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/yY\/r\/TeuVRS5nXZn.mp4","VideoPlayerHTML5Shaka":null,"OzDrmHelper":null,"useRateLimited":true,"useEventTime":true,"startTimestamp":null,"disableStreaming":false,"isHighlightEnabled":false,"videoLicenseUriMap":{},"graphApiVideoLicenseUri":null,"p2pModuleLoader":null}],1],["__inst_50478d2c_0_f",["VideoConfig"],[{"ad_client_token":null,"video_id":"724280891432620","fasterPlay":false,"instantPlay":false,"isSpherical":false,"disableNativeControls":true,"videoData":[{"is_hds":false,"is_hls":false,"video_id":"724280891432620","is_live_stream":false,"is_servable_via_fbms":false,"rotation":0,"is_facecast_audio":false,"content_category":"general","is_low_latency":false,"desired_latency_ms":null,"latency_tolerance_ms":null,"is_predictive_dash":false,"is_live_trace_enabled_on_player":false,"p2p_settings":null,"ms_param":null,"sd_src_no_ratelimit":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/83090549_844981825972009_4522720692923269120_n.mp4?_nc_cat=110&efg=eyJ2ZW5jb2RlX3RhZyI6InN2ZV9zZCJ9&_nc_ohc=aHNQHdlRMoYAQmtzlNonDALnmyU6Uat-7Yg7FjJiGQQKf9d0Xe2QOW-ng&_nc_ht=video-cdg2-1.xx&oh=768aa0e624b9b89bdf4f91aac12c67cd&oe=5E17279E","aspect_ratio":1.7777777777778,"hd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24130-2\/82368018_117244043122284_4625792017060438519_n.mp4?_nc_cat=105&efg=eyJ2ZW5jb2RlX3RhZyI6Im9lcF9oZCJ9&_nc_ohc=kp5I-WOzJyMAQnm8tDm-4zQPmwimgKQIHINrzt_T-vTR7TBXBa9gTkeEA&_nc_ht=video-cdg2-1.xx&oh=f4fb2c9b678e6d8f1ec06276267a931c&oe=5EA77F92","sd_src":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.9040-2\/83090549_844981825972009_4522720692923269120_n.mp4?_nc_cat=110&efg=eyJybHIiOjMwMCwicmxhIjo1MTIsInZlbmNvZGVfdGFnIjoic3ZlX3NkIn0\u00253D&_nc_ohc=aHNQHdlRMoYAQmtzlNonDALnmyU6Uat-7Yg7FjJiGQQKf9d0Xe2QOW-ng&rl=300&vabr=159&_nc_ht=video-cdg2-1.xx&oh=768aa0e624b9b89bdf4f91aac12c67cd&oe=5E17279E","hd_tag":"oep_hd","sd_tag":"sve_sd","stream_type":"progressive","live_routing_token":"","projection":"flat","subtitles_src":null,"dash_manifest":null,"dash_prefetched_representation_ids":["522089441999758v","2432199857021970ad"],"player_version_overwrite":"pleasantville","spherical_config":{},"is_spherical":false,"original_height":1080,"original_width":1920,"video_url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/724280891432620\/","is_broadcast":false,"override_config":null,"prefetch_cache":null}],"minQuality":"hd","maxQuality":null,"muted":false,"autoFullscreenHD":false,"subtitlesActive":true,"lazyPreload":false,"onafterloadRegister":false,"abortDummy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/yY\/r\/TeuVRS5nXZn.mp4","VideoPlayerHTML5Shaka":null,"OzDrmHelper":null,"useRateLimited":true,"useEventTime":true,"startTimestamp":null,"disableStreaming":false,"isHighlightEnabled":false,"videoLicenseUriMap":{},"graphApiVideoLicenseUri":null,"p2pModuleLoader":null}],1],["__inst_e9dd2b01_0_f",["AsyncDataPreloader"],[{"id":"adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafc465f18f35064426"}],1],["__inst_e9dd2b01_0_g",["AsyncDataPreloader"],[{"id":"adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafc48ec78309168793"}],1],["__inst_e9dd2b01_0_h",["AsyncDataPreloader"],[{"id":"adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafc559c52a52894814"}],1],["__inst_5b4d0c00_0_2",["Menu","MenuItem","__markup_3310c079_0_4","HTML","__markup_3310c079_0_5","__markup_3310c079_0_6","__markup_3310c079_0_7","XUIMenuWithSquareCorner","XUIMenuTheme"],[[{"accesskey":"8","ajaxify":null,"href":"\/about\/","rel":null,"title":"","ctor":{"__m":"MenuItem"},"markup":{"__m":"__markup_3310c079_0_4"},"label":"\u00c0 propos","className":null},{"accesskey":null,"ajaxify":null,"href":"https:\/\/www.facebook.com\/careers\/?ref=pf","rel":null,"title":"","ctor":{"__m":"MenuItem"},"markup":{"__m":"__markup_3310c079_0_5"},"label":"Emplois","className":null},{"accesskey":null,"ajaxify":null,"href":"https:\/\/developers.facebook.com\/?ref=pf","rel":null,"title":"","ctor":{"__m":"MenuItem"},"markup":{"__m":"__markup_3310c079_0_6"},"label":"D\u00e9veloppeurs","className":null},{"accesskey":"0","ajaxify":null,"href":"https:\/\/www.facebook.com\/help\/?ref=pf","rel":null,"title":"","ctor":{"__m":"MenuItem"},"markup":{"__m":"__markup_3310c079_0_7"},"label":"Aide","className":null}],{"id":"u_0_ec","behaviors":[{"__m":"XUIMenuWithSquareCorner"}],"theme":{"__m":"XUIMenuTheme"}}],1],["__inst_84473062_0_0",["URI"],["\/api\/graphqlbatch\/"],1],["__inst_84473062_0_1",["URI"],["\/api\/graphql\/"],1],["__inst_84473062_0_2",["URI"],["\/dlite\/skywalker_topic\/"],1]],"markup":[["__markup_a588f507_0_0",{"__html":"\u003Cdiv id=\"u_0_0\">\u003Cspan class=\"_33vv\">\u003Cspan class=\"_kao\">\u003Ch1 id=\"seo_h1_tag\">\u003Ca class=\"_64-f\" href=\"https:\/\/www.facebook.com\/cgtnamerica\/\">\u003Cspan>CGTN America\u003C\/span>\u003C\/a>\u003C\/h1>\u003C\/span>\u003C\/span>\u003Cspan class=\"_3d2h\">\u003Ca class=\"_56_f _5dzy _5d-1 _3twv _33v-\" id=\"u_0_ef\" data-hovercard=\"u_0_ef\" data-hovercard-prefer-more-content-show=\"1\" href=\"#\" role=\"button\">\u003C\/a>\u003C\/span>\u003C\/div>"},1],["__markup_072b8e64_0_0",{"__html":"\u003Ca href=\"\/cgtnamerica\/videos\/2810732512322033\/?fallback=1\" rel=\"theater\">\u003C\/a>"},1],["__markup_072b8e64_0_1",{"__html":"\u003Ca href=\"\/cgtnamerica\/videos\/575551206614901\/?fallback=1\" rel=\"theater\">\u003C\/a>"},1],["__markup_072b8e64_0_2",{"__html":"\u003Ca href=\"\/cgtnamerica\/videos\/473117833606224\/?fallback=1\" rel=\"theater\">\u003C\/a>"},1],["__markup_072b8e64_0_3",{"__html":"\u003Ca href=\"\/ChinaGlobalTVNetwork\/videos\/2561909697364016\/?fallback=1\" rel=\"theater\">\u003C\/a>"},1],["__markup_072b8e64_0_4",{"__html":"\u003Ca href=\"\/cgtnamerica\/videos\/2525520257557521\/?fallback=1\" rel=\"theater\">\u003C\/a>"},1],["__markup_072b8e64_0_5",{"__html":"\u003Ca href=\"\/ChinaGlobalTVNetwork\/videos\/2658816227487174\/?fallback=1\" rel=\"theater\">\u003C\/a>"},1],["__markup_072b8e64_0_6",{"__html":"\u003Ca href=\"\/cgtnamerica\/videos\/603020973807861\/?fallback=1\" rel=\"theater\">\u003C\/a>"},1],["__markup_072b8e64_0_7",{"__html":"\u003Ca href=\"\/ChinaGlobalTVNetwork\/videos\/764719224037291\/?fallback=1\" rel=\"theater\">\u003C\/a>"},1],["__markup_072b8e64_0_8",{"__html":"\u003Ca href=\"\/cgtnamerica\/videos\/2908242472529513\/?fallback=1\" rel=\"theater\">\u003C\/a>"},1],["__markup_072b8e64_0_9",{"__html":"\u003Ca href=\"\/cgtnamerica\/videos\/1054162518271150\/?fallback=1\" rel=\"theater\">\u003C\/a>"},1],["__markup_072b8e64_0_a",{"__html":"\u003Ca href=\"\/cgtnamerica\/videos\/781338735704182\/?fallback=1\" rel=\"theater\">\u003C\/a>"},1],["__markup_072b8e64_0_b",{"__html":"\u003Ca href=\"\/cgtnamerica\/videos\/2600764323543751\/?fallback=1\" rel=\"theater\">\u003C\/a>"},1],["__markup_072b8e64_0_c",{"__html":"\u003Ca href=\"\/cgtnamerica\/videos\/476132016429785\/?fallback=1\" rel=\"theater\">\u003C\/a>"},1],["__markup_072b8e64_0_d",{"__html":"\u003Ca href=\"\/cgtnamerica\/videos\/1344692685696690\/?fallback=1\" rel=\"theater\">\u003C\/a>"},1],["__markup_072b8e64_0_e",{"__html":"\u003Ca href=\"\/cgtnamerica\/videos\/458567871694659\/?fallback=1\" rel=\"theater\">\u003C\/a>"},1],["__markup_072b8e64_0_f",{"__html":"\u003Ca href=\"\/cgtnamerica\/videos\/724280891432620\/?fallback=1\" rel=\"theater\">\u003C\/a>"},1],["__markup_e58791f2_0_0",{"__html":"\u003Cdiv>\u003Cdiv class=\"_3-8y _2lhm\">\u003Cdiv>\u003Cdiv class=\"\">\u003Cdiv id=\"u_0_ei\" class=\"_6m2 _1zpr clearfix _6m8 _5cwb _23bq _2bf7 _4y_8 _7a5x _pb2 _5qqr\" data-ft=\"&#123;&quot;tn&quot;:&quot;H&quot;&#125;\">\u003Cdiv class=\"clearfix _2r3x\">\u003Cdiv class=\"lfloat _ohe\">\u003Cspan class=\"_3m6-\">\u003Cdiv class=\"_6ks\">\u003Ca href=\"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t39.1997-6\/68940115_2353822571368646_2723590318904573952_n.png?_nc_cat=1&amp;_nc_ohc=YRoLOqNqtDEAQmVaW3tctafZoNoPU6xGACfRQiUWejuyMugkyWcdSV2mA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=1af9ac3cc8a39deaa397e42717951551&amp;oe=5EA684CF\" aria-label=\"\" tabindex=\"-1\" target=\"_blank\">\u003Cdiv class=\"_6l- __c_\">\u003Cdiv class=\"uiScaledImageContainer _6m5 fbStoryAttachmentImage\" style=\"width:90px;height:90px;\">\u003Cimg class=\"scaledImageFitWidth img\" src=\"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t39.1997-6\/s118x90\/68940115_2353822571368646_2723590318904573952_n.png?_nc_cat=1&amp;_nc_ohc=YRoLOqNqtDEAQmVaW3tctafZoNoPU6xGACfRQiUWejuyMugkyWcdSV2mA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=3bad74e461e12c3fde0dccbb9103f05b&amp;oe=5EAFAAE0\" data-src=\"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t39.1997-6\/s118x90\/68940115_2353822571368646_2723590318904573952_n.png?_nc_cat=1&amp;_nc_ohc=YRoLOqNqtDEAQmVaW3tctafZoNoPU6xGACfRQiUWejuyMugkyWcdSV2mA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=3bad74e461e12c3fde0dccbb9103f05b&amp;oe=5EAFAAE0\" alt=\"\" width=\"90\" height=\"90\" \/>\u003C\/div>\u003C\/div>\u003C\/a>\u003C\/div>\u003C\/span>\u003C\/div>\u003Cdiv class=\"_42ef\">\u003Cspan class=\"_3c21\">\u003Cdiv class=\"_3ekx _29_4\">\u003Cdiv class=\"_6m3 _--6\">\u003Cdiv class=\"mbs _6m6 _2cnj _5s6c\">\u003Ca href=\"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t39.1997-6\/68940115_2353822571368646_2723590318904573952_n.png?_nc_cat=1&amp;_nc_ohc=YRoLOqNqtDEAQmVaW3tctafZoNoPU6xGACfRQiUWejuyMugkyWcdSV2mA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=1af9ac3cc8a39deaa397e42717951551&amp;oe=5EA684CF\" target=\"_blank\">\u003C\/a>\u003C\/div>\u003Cdiv class=\"_59tj _2iau\">\u003Cdiv>\u003Cdiv class=\"\">\u003C\/div>\u003C\/div>\u003C\/div>\u003C\/div>\u003Ca href=\"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t39.1997-6\/68940115_2353822571368646_2723590318904573952_n.png?_nc_cat=1&amp;_nc_ohc=YRoLOqNqtDEAQmVaW3tctafZoNoPU6xGACfRQiUWejuyMugkyWcdSV2mA&amp;_nc_ht=scontent-cdg2-1.xx&amp;oh=1af9ac3cc8a39deaa397e42717951551&amp;oe=5EA684CF\" aria-label=\"\" rel=\"noopener\" tabindex=\"-1\" target=\"_blank\" class=\"_52c6\">\u003C\/a>\u003C\/div>\u003C\/span>\u003C\/div>\u003C\/div>\u003C\/div>\u003C\/div>\u003C\/div>\u003C\/div>\u003C\/div>"},1],["__markup_3310c079_0_0",{"__html":"Aide sur les raccourcis clavier..."},1],["__markup_3310c079_0_1",{"__html":"Centre d\u2019aide \u00e0 l\u2019accessibilit\u00e9"},1],["__markup_3310c079_0_2",{"__html":"Donner votre avis"},1],["__markup_3310c079_0_3",{"__html":"Mises \u00e0 jour concernant l\u2019accessibilit\u00e9 de Facebook"},1],["__markup_a588f507_0_1",{"__html":"\u003Cdiv>\u003Cdiv>\u003Cdiv>\u003Cdiv class=\"pam _7ll\">\u003Cdiv class=\"_7cto\">\u003Cdiv class=\"_7ctr\">\u003Cspan>Le badge de v\u00e9rification bleu confirme qu\u2019il s\u2019agit d\u2019une Page authentique de cette personnalit\u00e9, de ce m\u00e9dia ou de cette marque.\u003C\/span> \u003Ca href=\"https:\/\/www.facebook.com\/help\/196050490547892\">En savoir plus sur le badge de v\u00e9rification bleu.\u003C\/a>\u003C\/div>\u003Cdiv style=\"display:flex\">\u003Ca role=\"button\" class=\"_42ft _4jy0 _7cts _4jy3 _4jy1 selected _51sy\" href=\"\/frx\/page\/verification_badge\/?page_id=300653326696613\" rel=\"dialog\">Trouver de l\u2019aide ou signaler le badge\u003C\/a>\u003C\/div>\u003C\/div>\u003C\/div>\u003C\/div>\u003Cdiv aria-label=\"Contenu de la bo&#xee;te de dialogue\" id=\"u_0_eg\">\u003C\/div>\u003C\/div>\u003Ca aria-label=\"Fermer\" class=\"layer_close_elem accessible_elem\" href=\"#\" role=\"button\" id=\"u_0_eh\" aria-labelledby=\"u_0_eh u_0_eg\">\u003C\/a>\u003C\/div>"},1],["__markup_3310c079_0_4",{"__html":"\u00c0 propos"},1],["__markup_3310c079_0_5",{"__html":"Emplois"},1],["__markup_3310c079_0_6",{"__html":"D\u00e9veloppeurs"},1],["__markup_3310c079_0_7",{"__html":"Aide"},1]],"elements":[["__elem_9f5fac15_0_2","pagelet_page_above_header",1],["__elem_9f5fac15_0_3","PagesCoverElementContainerPagelet",1],["__elem_9f5fac15_0_4","pagelet_growth_expanding_cta",1],["__elem_835c633a_0_0","login_form",1],["__elem_1edd4980_0_0","loginbutton",1],["__elem_f46f4946_0_0","u_0_4",1],["__elem_f46f4946_0_1","u_0_5",1],["__elem_a588f507_0_7","u_0_6",1],["__elem_3fc3da18_0_0","u_0_7",1],["__elem_51be6cb7_0_0","u_0_8",1],["__elem_1de146dc_0_0","u_0_9",1],["__elem_ec77afbd_0_0","u_0_a",2],["__elem_1de146dc_0_1","u_0_b",1],["__elem_ec77afbd_0_1","u_0_c",2],["__elem_9f5fac15_0_8","pagelet_bluebar",1],["__elem_45e94dd8_0_0","pagelet_bluebar",2],["__elem_a588f507_0_6","globalContainer",2],["__elem_a588f507_0_8","content",1],["__elem_9f5fac15_0_1","entity_sidebar",1],["__elem_a588f507_0_3","u_0_d",1],["__elem_a588f507_0_4","u_0_e",1],["__elem_a588f507_0_0","u_0_f",1],["__elem_a588f507_0_9","u_0_g",1],["__elem_d3d2500b_0_0","u_0_g",1],["__elem_d0de0506_0_0","u_0_g",1],["__elem_fc9f538f_0_0","u_0_h",1],["__elem_a588f507_0_5","u_0_i",2],["__elem_a588f507_0_1","u_0_j",1],["__elem_a588f507_0_2","u_0_k",1],["__elem_9f5fac15_0_0","u_0_l",1],["__elem_9f5fac15_0_5","id_5e16fafb5b2225a89211926",1],["__elem_9f5fac15_0_6","pagelet_rhc_footer",1],["__elem_9f5fac15_0_7","id_5e16fafb5b1fd4361777538",1],["__elem_a588f507_0_a","u_0_m",1],["__elem_fc9f538f_0_4","u_0_1q",1],["__elem_fc9f538f_0_5","u_0_1s",1],["__elem_fc9f538f_0_6","u_0_1u",1],["__elem_a588f507_0_e","u_0_19",1],["__elem_fc9f538f_0_1","u_0_20",1],["__elem_9fc087ed_0_0","u_0_p",2],["__elem_fc9f538f_0_c","u_0_30",1],["__elem_fc9f538f_0_k","u_0_3t",1],["__elem_fc9f538f_0_l","u_0_3v",1],["__elem_fc9f538f_0_m","u_0_3x",1],["__elem_a588f507_0_g","u_0_28",1],["__elem_a588f507_0_j","u_0_41",1],["__elem_a588f507_0_k","u_0_42",1],["__elem_a648e52c_0_0","u_0_43",3],["__elem_a588f507_0_l","u_0_44",1],["__elem_50478d2c_0_0","u_0_45",1],["__elem_6d29ee41_0_0","u_0_46",1],["__elem_94c15385_0_0","u_0_47",1],["__elem_70dbca80_0_0","u_0_48",1],["__elem_2223e126_0_0","u_0_49",1],["__elem_a176866d_0_0","u_0_4a",1],["__elem_6555e0bc_0_0","u_0_4b",1],["__elem_a588f507_0_m","u_0_4c",1],["__elem_2afd4650_0_0","u_0_2o",1],["__elem_8c33f2cf_0_0","u_0_2o",2],["__elem_8937e029_0_0","u_0_4d",1],["__elem_492d06b7_0_0","u_0_2p",2],["__elem_444213d2_0_0","u_0_4e",1],["__elem_a588f507_0_n","u_0_4f",1],["__elem_a588f507_0_o","u_0_4g",1],["__elem_fc9f538f_0_8","u_0_4h",1],["__elem_9fc087ed_0_3","u_0_t",2],["__elem_2106b0cc_0_0","u_0_4n",1],["__elem_fc9f538f_0_n","u_0_4o",1],["__elem_a588f507_0_d","u_0_1m",1],["__elem_fc9f538f_0_2","u_0_4p",1],["__elem_9fc087ed_0_1","u_0_12",2],["__elem_2106b0cc_0_1","u_0_4q",1],["__elem_fc9f538f_0_o","u_0_4r",1],["__elem_a588f507_0_f","u_0_1n",1],["__elem_fc9f538f_0_3","u_0_4s",1],["__elem_9fc087ed_0_2","u_0_z",2],["__elem_a588f507_0_i","u_0_2e",1],["__elem_a588f507_0_q","u_0_4v",1],["__elem_a588f507_0_r","u_0_4w",1],["__elem_a648e52c_0_1","u_0_4x",3],["__elem_a588f507_0_s","u_0_4y",1],["__elem_50478d2c_0_1","u_0_4z",1],["__elem_6d29ee41_0_1","u_0_50",1],["__elem_94c15385_0_1","u_0_51",1],["__elem_70dbca80_0_1","u_0_52",1],["__elem_2223e126_0_1","u_0_53",1],["__elem_a176866d_0_1","u_0_54",1],["__elem_6555e0bc_0_1","u_0_55",1],["__elem_a588f507_0_t","u_0_56",1],["__elem_2afd4650_0_1","u_0_3h",1],["__elem_8c33f2cf_0_1","u_0_3h",2],["__elem_8937e029_0_1","u_0_57",1],["__elem_492d06b7_0_2","u_0_3i",2],["__elem_444213d2_0_1","u_0_58",1],["__elem_a588f507_0_u","u_0_59",1],["__elem_a588f507_0_v","u_0_5a",1],["__elem_fc9f538f_0_9","u_0_5b",1],["__elem_9fc087ed_0_4","u_0_16",2],["__elem_a588f507_0_w","u_0_3c",1],["__elem_a588f507_0_19","u_0_5m",1],["__elem_a588f507_0_1a","u_0_5n",1],["__elem_a648e52c_0_4","u_0_5o",3],["__elem_a588f507_0_1b","u_0_5p",1],["__elem_50478d2c_0_3","u_0_5q",1],["__elem_6d29ee41_0_3","u_0_5r",1],["__elem_94c15385_0_3","u_0_5s",1],["__elem_70dbca80_0_3","u_0_5t",1],["__elem_2223e126_0_3","u_0_5u",1],["__elem_a176866d_0_3","u_0_5v",1],["__elem_6555e0bc_0_3","u_0_5w",1],["__elem_a588f507_0_1c","u_0_5x",1],["__elem_2afd4650_0_3","u_0_4t",1],["__elem_8c33f2cf_0_3","u_0_4t",2],["__elem_8937e029_0_3","u_0_5y",1],["__elem_492d06b7_0_4","u_0_4u",2],["__elem_444213d2_0_3","u_0_5z",1],["__elem_a588f507_0_1d","u_0_60",1],["__elem_a588f507_0_1e","u_0_61",1],["__elem_a588f507_0_p","u_0_2j",1],["__elem_a588f507_0_y","u_0_62",1],["__elem_a588f507_0_z","u_0_63",1],["__elem_a648e52c_0_2","u_0_64",3],["__elem_a588f507_0_10","u_0_65",1],["__elem_50478d2c_0_2","u_0_66",1],["__elem_6d29ee41_0_2","u_0_67",1],["__elem_94c15385_0_2","u_0_68",1],["__elem_70dbca80_0_2","u_0_69",1],["__elem_2223e126_0_2","u_0_6a",1],["__elem_a176866d_0_2","u_0_6b",1],["__elem_6555e0bc_0_2","u_0_6c",1],["__elem_a588f507_0_11","u_0_6d",1],["__elem_2afd4650_0_2","u_0_4i",1],["__elem_8c33f2cf_0_2","u_0_4i",2],["__elem_8937e029_0_2","u_0_6e",1],["__elem_492d06b7_0_3","u_0_4j",2],["__elem_444213d2_0_2","u_0_6f",1],["__elem_a588f507_0_12","u_0_6g",1],["__elem_a588f507_0_13","u_0_6h",1],["__elem_fc9f538f_0_a","u_0_6i",1],["__elem_9fc087ed_0_5","u_0_w",2],["__elem_a588f507_0_17","u_0_3l",1],["__elem_a588f507_0_1n","u_0_6j",1],["__elem_a588f507_0_1o","u_0_6k",1],["__elem_a648e52c_0_6","u_0_6l",3],["__elem_a588f507_0_1p","u_0_6m",1],["__elem_50478d2c_0_5","u_0_6n",1],["__elem_6d29ee41_0_5","u_0_6o",1],["__elem_94c15385_0_5","u_0_6p",1],["__elem_70dbca80_0_5","u_0_6q",1],["__elem_2223e126_0_5","u_0_6r",1],["__elem_a176866d_0_5","u_0_6s",1],["__elem_6555e0bc_0_5","u_0_6t",1],["__elem_a588f507_0_1q","u_0_6u",1],["__elem_2afd4650_0_5","u_0_5e",1],["__elem_8c33f2cf_0_5","u_0_5e",2],["__elem_8937e029_0_5","u_0_6v",1],["__elem_492d06b7_0_6","u_0_5f",2],["__elem_444213d2_0_5","u_0_6w",1],["__elem_a588f507_0_1r","u_0_6x",1],["__elem_a588f507_0_1s","u_0_6y",1],["__elem_a588f507_0_14","u_0_3z",1],["__elem_a588f507_0_1h","u_0_6z",1],["__elem_a588f507_0_1i","u_0_70",1],["__elem_a648e52c_0_5","u_0_71",3],["__elem_a588f507_0_1j","u_0_72",1],["__elem_50478d2c_0_4","u_0_73",1],["__elem_6d29ee41_0_4","u_0_74",1],["__elem_94c15385_0_4","u_0_75",1],["__elem_70dbca80_0_4","u_0_76",1],["__elem_2223e126_0_4","u_0_77",1],["__elem_a176866d_0_4","u_0_78",1],["__elem_6555e0bc_0_4","u_0_79",1],["__elem_a588f507_0_1k","u_0_7a",1],["__elem_2afd4650_0_4","u_0_5c",1],["__elem_8c33f2cf_0_4","u_0_5c",2],["__elem_8937e029_0_4","u_0_7b",1],["__elem_492d06b7_0_5","u_0_5d",2],["__elem_444213d2_0_4","u_0_7c",1],["__elem_a588f507_0_1l","u_0_7d",1],["__elem_a588f507_0_1m","u_0_7e",1],["__elem_a588f507_0_1f","u_0_40",1],["__elem_a588f507_0_1y","u_0_7h",1],["__elem_a588f507_0_1z","u_0_7i",1],["__elem_a648e52c_0_7","u_0_7j",3],["__elem_a588f507_0_20","u_0_7k",1],["__elem_50478d2c_0_7","u_0_7l",1],["__elem_6d29ee41_0_7","u_0_7m",1],["__elem_94c15385_0_7","u_0_7n",1],["__elem_70dbca80_0_6","u_0_7o",1],["__elem_2223e126_0_7","u_0_7p",1],["__elem_a176866d_0_7","u_0_7q",1],["__elem_6555e0bc_0_7","u_0_7r",1],["__elem_a588f507_0_21","u_0_7s",1],["__elem_2afd4650_0_7","u_0_5i",1],["__elem_8c33f2cf_0_7","u_0_5i",2],["__elem_8937e029_0_7","u_0_7t",1],["__elem_492d06b7_0_7","u_0_5j",2],["__elem_444213d2_0_7","u_0_7u",1],["__elem_a588f507_0_22","u_0_7v",1],["__elem_a588f507_0_23","u_0_7w",1],["__elem_a588f507_0_18","u_0_2t",1],["__elem_a588f507_0_2g","u_0_7z",1],["__elem_a588f507_0_2h","u_0_80",1],["__elem_a648e52c_0_a","u_0_81",3],["__elem_a588f507_0_2i","u_0_82",1],["__elem_50478d2c_0_a","u_0_83",1],["__elem_6d29ee41_0_a","u_0_84",1],["__elem_94c15385_0_a","u_0_85",1],["__elem_70dbca80_0_9","u_0_86",1],["__elem_2a05bc4a_0_0","u_0_87",1],["__elem_0c6f9d09_0_0","u_0_88",1],["__elem_a588f507_0_2k","u_0_89",1],["__elem_a588f507_0_2m","u_0_8a",1],["__elem_a588f507_0_2l","u_0_8b",1],["__elem_a588f507_0_2j","u_0_8c",1],["__elem_2223e126_0_a","u_0_8d",1],["__elem_a176866d_0_a","u_0_8e",1],["__elem_6555e0bc_0_a","u_0_8f",1],["__elem_a588f507_0_2n","u_0_8g",1],["__elem_2afd4650_0_a","u_0_7x",1],["__elem_8c33f2cf_0_a","u_0_7x",2],["__elem_8937e029_0_a","u_0_8h",1],["__elem_492d06b7_0_a","u_0_7y",2],["__elem_a588f507_0_2o","fbVideoStreamingReactionsTray",1],["__elem_a588f507_0_2q","u_0_8i",1],["__elem_a588f507_0_2r","u_0_8j",1],["__elem_fc9f538f_0_p","u_0_8k",1],["__elem_444213d2_0_a","u_0_8l",1],["__elem_a588f507_0_2p","u_0_8m",1],["__elem_a588f507_0_1t","u_0_4k",1],["__elem_a588f507_0_2a","u_0_8p",1],["__elem_a588f507_0_2b","u_0_8q",1],["__elem_a648e52c_0_9","u_0_8r",3],["__elem_a588f507_0_2c","u_0_8s",1],["__elem_50478d2c_0_9","u_0_8t",1],["__elem_6d29ee41_0_9","u_0_8u",1],["__elem_94c15385_0_9","u_0_8v",1],["__elem_70dbca80_0_8","u_0_8w",1],["__elem_2223e126_0_9","u_0_8x",1],["__elem_a176866d_0_9","u_0_8y",1],["__elem_6555e0bc_0_9","u_0_8z",1],["__elem_a588f507_0_2d","u_0_90",1],["__elem_2afd4650_0_9","u_0_7f",1],["__elem_8c33f2cf_0_9","u_0_7f",2],["__elem_8937e029_0_9","u_0_91",1],["__elem_492d06b7_0_9","u_0_7g",2],["__elem_444213d2_0_9","u_0_92",1],["__elem_a588f507_0_2e","u_0_93",1],["__elem_a588f507_0_2f","u_0_94",1],["__elem_fc9f538f_0_t","u_0_9h",1],["__elem_fc9f538f_0_j","u_0_9j",1],["__elem_9fc087ed_0_6","u_0_v",2],["__elem_fc9f538f_0_u","u_0_9k",1],["__elem_fc9f538f_0_v","u_0_9m",1],["__elem_fc9f538f_0_g","u_0_9o",1],["__elem_9fc087ed_0_b","u_0_x",2],["__elem_fc9f538f_0_w","u_0_9p",1],["__elem_fc9f538f_0_e","u_0_9r",1],["__elem_9fc087ed_0_8","u_0_10",2],["__elem_fc9f538f_0_x","u_0_9s",1],["__elem_fc9f538f_0_y","u_0_9x",1],["__elem_fc9f538f_0_f","u_0_9z",1],["__elem_9fc087ed_0_h","u_0_17",2],["__elem_fc9f538f_0_z","u_0_a0",1],["__elem_fc9f538f_0_h","u_0_a2",1],["__elem_9fc087ed_0_i","u_0_13",2],["__elem_fc9f538f_0_11","u_0_a7",1],["__elem_a588f507_0_2s","u_0_9a",1],["__elem_a588f507_0_2u","u_0_ag",1],["__elem_a588f507_0_2v","u_0_ah",1],["__elem_a648e52c_0_b","u_0_ai",3],["__elem_a588f507_0_2w","u_0_aj",1],["__elem_50478d2c_0_b","u_0_ak",1],["__elem_6d29ee41_0_b","u_0_al",1],["__elem_94c15385_0_b","u_0_am",1],["__elem_70dbca80_0_a","u_0_an",1],["__elem_2223e126_0_b","u_0_ao",1],["__elem_a176866d_0_b","u_0_ap",1],["__elem_6555e0bc_0_b","u_0_aq",1],["__elem_a588f507_0_2x","u_0_ar",1],["__elem_2afd4650_0_b","u_0_9u",1],["__elem_8c33f2cf_0_b","u_0_9u",2],["__elem_8937e029_0_b","u_0_as",1],["__elem_492d06b7_0_b","u_0_9v",2],["__elem_444213d2_0_b","u_0_at",1],["__elem_a588f507_0_2y","u_0_au",1],["__elem_a588f507_0_2z","u_0_av",1],["__elem_fc9f538f_0_q","u_0_aw",1],["__elem_9fc087ed_0_c","u_0_15",2],["__elem_a588f507_0_x","u_0_33",1],["__elem_a588f507_0_36","u_0_az",1],["__elem_a588f507_0_37","u_0_b0",1],["__elem_a648e52c_0_d","u_0_b1",3],["__elem_a588f507_0_38","u_0_b2",1],["__elem_50478d2c_0_d","u_0_b3",1],["__elem_6d29ee41_0_d","u_0_b4",1],["__elem_94c15385_0_d","u_0_b5",1],["__elem_70dbca80_0_b","u_0_b6",1],["__elem_2223e126_0_d","u_0_b7",1],["__elem_a176866d_0_d","u_0_b8",1],["__elem_6555e0bc_0_d","u_0_b9",1],["__elem_a588f507_0_39","u_0_ba",1],["__elem_2afd4650_0_d","u_0_ae",1],["__elem_8c33f2cf_0_d","u_0_ae",2],["__elem_8937e029_0_d","u_0_bb",1],["__elem_492d06b7_0_d","u_0_af",2],["__elem_444213d2_0_d","u_0_bc",1],["__elem_a588f507_0_3a","u_0_bd",1],["__elem_a588f507_0_3b","u_0_be",1],["__elem_fc9f538f_0_d","u_0_bf",1],["__elem_9fc087ed_0_9","u_0_u",2],["__elem_a588f507_0_2t","u_0_97",1],["__elem_a588f507_0_30","u_0_bg",1],["__elem_a588f507_0_31","u_0_bh",1],["__elem_a648e52c_0_c","u_0_bi",3],["__elem_a588f507_0_32","u_0_bj",1],["__elem_50478d2c_0_c","u_0_bk",1],["__elem_6d29ee41_0_c","u_0_bl",1],["__elem_94c15385_0_c","u_0_bm",1],["__elem_70dbca80_0_c","u_0_bn",1],["__elem_2223e126_0_c","u_0_bo",1],["__elem_a176866d_0_c","u_0_bp",1],["__elem_6555e0bc_0_c","u_0_bq",1],["__elem_a588f507_0_33","u_0_br",1],["__elem_2afd4650_0_c","u_0_ac",1],["__elem_8c33f2cf_0_c","u_0_ac",2],["__elem_8937e029_0_c","u_0_bs",1],["__elem_492d06b7_0_c","u_0_ad",2],["__elem_444213d2_0_c","u_0_bt",1],["__elem_a588f507_0_34","u_0_bu",1],["__elem_a588f507_0_35","u_0_bv",1],["__elem_fc9f538f_0_r","u_0_bw",1],["__elem_9fc087ed_0_d","u_0_y",2],["__elem_a588f507_0_3c","u_0_a3",1],["__elem_a588f507_0_3e","u_0_bz",1],["__elem_a588f507_0_3f","u_0_c0",1],["__elem_a648e52c_0_e","u_0_c1",3],["__elem_a588f507_0_3g","u_0_c2",1],["__elem_50478d2c_0_e","u_0_c3",1],["__elem_6d29ee41_0_e","u_0_c4",1],["__elem_94c15385_0_e","u_0_c5",1],["__elem_70dbca80_0_d","u_0_c6",1],["__elem_2223e126_0_e","u_0_c7",1],["__elem_a176866d_0_e","u_0_c8",1],["__elem_6555e0bc_0_e","u_0_c9",1],["__elem_a588f507_0_3h","u_0_ca",1],["__elem_2afd4650_0_e","u_0_ax",1],["__elem_8c33f2cf_0_e","u_0_ax",2],["__elem_8937e029_0_e","u_0_cb",1],["__elem_492d06b7_0_e","u_0_ay",2],["__elem_444213d2_0_e","u_0_cc",1],["__elem_a588f507_0_3i","u_0_cd",1],["__elem_a588f507_0_3j","u_0_ce",1],["__elem_a588f507_0_3d","u_0_a9",1],["__elem_a588f507_0_3k","u_0_cf",1],["__elem_a588f507_0_3l","u_0_cg",1],["__elem_a648e52c_0_f","u_0_ch",3],["__elem_a588f507_0_3m","u_0_ci",1],["__elem_50478d2c_0_f","u_0_cj",1],["__elem_6d29ee41_0_f","u_0_ck",1],["__elem_94c15385_0_f","u_0_cl",1],["__elem_70dbca80_0_e","u_0_cm",1],["__elem_2223e126_0_f","u_0_cn",1],["__elem_a176866d_0_f","u_0_co",1],["__elem_6555e0bc_0_f","u_0_cp",1],["__elem_a588f507_0_3n","u_0_cq",1],["__elem_2afd4650_0_f","u_0_bx",1],["__elem_8c33f2cf_0_f","u_0_bx",2],["__elem_8937e029_0_f","u_0_cr",1],["__elem_492d06b7_0_f","u_0_by",2],["__elem_444213d2_0_f","u_0_cs",1],["__elem_a588f507_0_3o","u_0_ct",1],["__elem_a588f507_0_3p","u_0_cu",1],["__elem_a588f507_0_h","u_0_2b",1],["__elem_a588f507_0_15","u_0_cv",1],["__elem_a588f507_0_16","u_0_cw",1],["__elem_a648e52c_0_3","u_0_cx",3],["__elem_a588f507_0_1u","u_0_cy",1],["__elem_50478d2c_0_6","u_0_cz",1],["__elem_6d29ee41_0_6","u_0_d0",1],["__elem_94c15385_0_6","u_0_d1",1],["__elem_70dbca80_0_7","u_0_d2",1],["__elem_2223e126_0_6","u_0_d3",1],["__elem_a176866d_0_6","u_0_d4",1],["__elem_6555e0bc_0_6","u_0_d5",1],["__elem_a588f507_0_1v","u_0_d6",1],["__elem_2afd4650_0_6","u_0_5g",1],["__elem_8c33f2cf_0_6","u_0_5g",2],["__elem_8937e029_0_6","u_0_d7",1],["__elem_492d06b7_0_1","u_0_5h",2],["__elem_444213d2_0_6","u_0_d8",1],["__elem_a588f507_0_1w","u_0_d9",1],["__elem_a588f507_0_1x","u_0_da",1],["__elem_fc9f538f_0_7","u_0_db",1],["__elem_9fc087ed_0_g","u_0_11",2],["__elem_fc9f538f_0_12","u_0_dc",1],["__elem_fc9f538f_0_s","u_0_de",1],["__elem_9fc087ed_0_e","u_0_14",2],["__elem_fc9f538f_0_13","u_0_df",1],["__elem_fc9f538f_0_10","u_0_dh",1],["__elem_9fc087ed_0_f","u_0_r",2],["__elem_fc9f538f_0_14","u_0_di",1],["__elem_a588f507_0_1g","u_0_3p",1],["__elem_a588f507_0_24","u_0_dk",1],["__elem_a588f507_0_25","u_0_dl",1],["__elem_a648e52c_0_8","u_0_dm",3],["__elem_a588f507_0_26","u_0_dn",1],["__elem_50478d2c_0_8","u_0_do",1],["__elem_6d29ee41_0_8","u_0_dp",1],["__elem_94c15385_0_8","u_0_dq",1],["__elem_70dbca80_0_f","u_0_dr",1],["__elem_2223e126_0_8","u_0_ds",1],["__elem_a176866d_0_8","u_0_dt",1],["__elem_6555e0bc_0_8","u_0_du",1],["__elem_a588f507_0_27","u_0_dv",1],["__elem_2afd4650_0_8","u_0_5k",1],["__elem_8c33f2cf_0_8","u_0_5k",2],["__elem_8937e029_0_8","u_0_dw",1],["__elem_492d06b7_0_8","u_0_5l",2],["__elem_444213d2_0_8","u_0_dx",1],["__elem_a588f507_0_28","u_0_dy",1],["__elem_a588f507_0_29","u_0_dz",1],["__elem_fc9f538f_0_i","u_0_e0",1],["__elem_9fc087ed_0_7","u_0_s",2],["__elem_b8b0125f_0_0","u_0_e1",1],["__elem_fc9f538f_0_b","u_0_e3",1],["__elem_9fc087ed_0_a","u_0_q",2],["__elem_a588f507_0_c","u_0_e4",1],["__elem_a588f507_0_b","u_0_e5",1],["__elem_1c03405d_0_0","www_pages_reaction_see_more_unitwww_pages_posts",1],["__elem_9f5fac15_0_9","PageTimelineSearchPagelet_300653326696613",1],["__elem_9f5fac15_0_a","PagePostsByOthersPagelet_300653326696613",1],["__elem_fc9f538f_0_15","u_0_e6",1],["__elem_a588f507_0_3q","u_0_e7",1],["__elem_50a7c757_0_0","u_0_e8",1],["__elem_d94ac754_0_0","u_0_e9",1],["__elem_835c633a_0_1","login_form",1],["__elem_3f8a34cc_0_0","email",1],["__elem_3f8a34cc_0_1","pass",1],["__elem_45d73b5d_0_0","loginbutton",1],["__elem_f46f4946_0_2","u_0_ea",1],["__elem_f46f4946_0_3","u_0_eb",1],["__elem_072b8e64_0_0","expanding_cta_close_button",1],["__elem_1de146dc_0_2","u_0_ed",1],["__elem_072b8e64_0_1","u_0_ee",2]],"require":[["XControllerWithPageTokenURIUpdater","updateURI",[],["\/pg\/cgtnamerica\/posts\/"]],["CurrentPage","init",[],[{"pageID":"300653326696613","pageName":"CGTN America"}]],["SimpleSearchNavigation","setPageTitle",[],["CGTN America",false]],["EntityPageRenderer","constructAndRenderComponent",["PagesUsername.react","__elem_a588f507_0_0"],[{"__m":"PagesUsername.react"},{"editable":false,"isMessagingEnabled":false,"name":"CGTN America","pageID":"300653326696613","username":"cgtnamerica","usernameEditDialogProfilePictureURI":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/p60x60\/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&_nc_ht=scontent-cdg2-1.xx&oh=52c508471c2c12674c5551ba57a2b90b&oe=5E9253EF"},{"__m":"__elem_a588f507_0_0"}]],["WebPixelRatioDetector","startDetecting",[],[false]],["DocumentTitle","set",[],["CGTN America - Publications | Facebook",false]],["FIGEntityPageLayout","register",["__elem_9f5fac15_0_0"],[{"__m":"__elem_9f5fac15_0_0"},["._1-ia","._4-u2"]]],["PagesLogger","log",[],["300653326696613","impression","page_profile",null,[],{"tab":"tab_posts","ref":"by_typing_url","site":"www"}]],["TBLPagesPageSurfaceImpressionFalcoEventWrapper","log",[],[{"data":{"event_location":"page__surface","page_id":"300653326696613","referrer":"by_typing_url","event_data":{"tab":"tab_posts"}}}]],["EntityPageRenderer","constructAndRenderComponent",["PagesActionBarChannelContainer.react","PageSharePageAction.react","PageSuggestEditsAction.react","PageCreatePageAction.react","PageSimpleActionWithURL.react","PageReportAction.react","__elem_a588f507_0_1"],[{"__m":"PagesActionBarChannelContainer.react"},{"likeFollowData":null,"recommendData":null,"messageData":null,"pageID":"300653326696613","customActionsData":[{"__typename":"PageLikeAction","action_type":"LIKE","label":{"text":"J\u2019aime"},"icon":null,"react_component_name":null,"url":"https:\/\/www.facebook.com\/pages\/fan_status\/?fbpage_id=300653326696613&add=1&reload=1","url_handler_type":"ASYNC_POST"},{"__typename":"PageSharePageAction","action_type":"SHARE","label":{"text":"Partager"},"icon":{"icon_image":{"uri":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yQ\/r\/OdYDf4QTPIK.png"}},"react_component_name":"JS\\PageSharePageAction_react","url":"https:\/\/www.facebook.com\/ajax\/sharer\/?s=18&appid=2309869772&id=300653326696613&p\u00255B0\u00255D=300653326696613","url_handler_type":"ASYNC_DIALOG","ReactComponent":{"__m":"PageSharePageAction.react"}},{"__typename":"PageSuggestEditsAction","action_type":"SUGGEST_EDITS","label":{"text":"Sugg\u00e9rer des modifications"},"icon":null,"react_component_name":"JS\\PageSuggestEditsAction_react","url":"https:\/\/www.facebook.com\/pages\/suggest\/edits\/dialog\/?page_id=300653326696613&entry_point=timeline_action_menu_suggest_edits&session_id=729630940754850123&last_action_time=1578564347&id=300653326696613","url_handler_type":"DIALOG","ReactComponent":{"__m":"PageSuggestEditsAction.react"}},{"__typename":"PageCreatePageAction","action_type":"CREATE_PAGE","label":{"text":"Cr\u00e9er une Page"},"icon":null,"react_component_name":"JS\\PageCreatePageAction_react","url":"https:\/\/www.facebook.com\/pages\/create\/?ref_type=page_profile_menu","url_handler_type":"LINK_OUT","ReactComponent":{"__m":"PageCreatePageAction.react"}},{"__typename":"PageBlockPageAction","action_type":"BLOCK_PAGE","label":{"text":"Bloquer la Page"},"icon":null,"react_component_name":"JS\\PageSimpleActionWithURL_react","url":"https:\/\/www.facebook.com\/privacy\/block_page\/?page_id=300653326696613","url_handler_type":"DIALOG_POST","ReactComponent":{"__m":"PageSimpleActionWithURL.react"}},{"__typename":"PageReportAction","action_type":"REPORT","label":{"text":"Trouver de l\u2019aide ou signaler la Page"},"icon":null,"react_component_name":"JS\\PageReportAction_react","url":"https:\/\/www.facebook.com\/ajax\/nfx\/start_dialog\/?context=\u00257B\u002522session_id\u002522\u00253A\u002522ce0957bb-c608-481b-bfa2-1dfd13280443\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522page\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522report_button\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u002522300653326696613\u002522\u00257D","url_handler_type":"DIALOG","ReactComponent":{"__m":"PageReportAction.react"}}],"numberOfActionBarButtons":3,"next":"https:\/\/www.facebook.com\/cgtnamerica\/posts\/"},{"__m":"__elem_a588f507_0_1"}]],["EntityPageRenderer","constructAndRenderComponent",["PagesPrimaryButtonsActionChannel.react","PageCTAViewerUnitContainer.react","PageMessageAction.react","__elem_a588f507_0_2"],[{"__m":"PagesPrimaryButtonsActionChannel.react"},{"pageID":"300653326696613","primaryButtons":[{"__typename":"PageCTAAction","action_type":"LEGACY_CTA_WATCH_NOW","label":{"text":"Regarder la vid\u00e9o"},"call_to_action":{"id":"1764517540310177","label":"Regarder la vid\u00e9o","cta_type":"WATCH_NOW","component_flow_service_config":null},"cta_config":null,"icon_name":null,"page":{"id":"300653326696613"},"react_component_name":"JS\\PageCTAViewerUnitContainer_react","should_auto_open":"","ReactComponent":{"__m":"PageCTAViewerUnitContainer.react"},"ctaWebDestinationType":"WEBSITE"},{"__typename":"PageMessageAction","action_type":"MESSAGE","label":{"text":"Envoyer un message"},"page":{"id":"300653326696613","category_type":"NEWS_SITE"},"messaging_page":{"id":"300653326696613"},"react_component_name":"JS\\PageMessageAction_react","show_nux":false,"ReactComponent":{"__m":"PageMessageAction.react"}}],"next":"https:\/\/www.facebook.com\/cgtnamerica\/posts\/","isAdmin":false},{"__m":"__elem_a588f507_0_2"}]],["EntityPageRenderer","constructAndRenderComponent",["PagesProfilePictureContainer.react","__elem_a588f507_0_3"],[{"__m":"PagesProfilePictureContainer.react"},{"currentCoverType":"cover_slideshow","editable":false,"loading":false,"modules":{"PagesProfilePictureEditMenu":null},"pageHasPhotos":true,"pageID":"300653326696613","photoSourcePageID":"300653326696613","photoID":"1662871250474807","photoIsSquare":true,"size":180,"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/p200x200\/32205905_1662871253808140_3134585544869150720_n.png?_nc_cat=1&_nc_ohc=_TkRxPD9KNkAQnfb4JT7UDoPBNjDbRnph9NoFgREm2a4vW8TbwQdxJdrA&_nc_ht=scontent-cdg2-1.xx&oh=eb1374803cab966f79e07edf29281666&oe=5E9CF7EC","videoData":null,"profilePicStoryData":{"showStoryRing":false,"bucketID":1731965023542756}},{"__m":"__elem_a588f507_0_3"}]],["ReactRenderer","constructAndRenderComponentAcrossTransitions",["EntityTitle.react","__markup_a588f507_0_0","HTML","__elem_a588f507_0_4"],[{"__m":"EntityTitle.react"},{"title":{"__m":"__markup_a588f507_0_0"}},{"__m":"__elem_a588f507_0_4"}]],["XUISubNavigationItemsAndNavigationShortcutsHighlighting","init",["__elem_d0de0506_0_0"],[[{"__m":"__elem_d0de0506_0_0"}]]],["FBFeedImpressionTopMarginGetter","setActionBar",["__elem_a588f507_0_5"],[{"__m":"__elem_a588f507_0_5"}]],["FIGEntityPageLayout","registerAcrossTransitions",["__elem_a588f507_0_5","EntityPageLayoutDockingElement","getEntityPageDockingElementOffset"],[{"__m":"__elem_a588f507_0_5"},["._hoc"],{"__m":"EntityPageLayoutDockingElement"},{"__m":"getEntityPageDockingElementOffset"}]],["PagesProfileSidebarLogger","register",[],["300653326696613"]],["ScriptPath","set",[],["XPagesProfilePostsController","b1ce5280",{"imp_id":"0RwDm5j3o70XrEomi","ef_page":null,"uri":"https:\/\/www.facebook.com\/cgtnamerica\/posts\/","entity_id":"300653326696613"}]],["UITinyViewportAction","init",[],[]],["ResetScrollOnUnload","init",["__elem_a588f507_0_6"],[{"__m":"__elem_a588f507_0_6"}]],["AccessibilityWebVirtualCursorClickLogger","init",["__elem_45e94dd8_0_0","__elem_a588f507_0_6"],[[{"__m":"__elem_45e94dd8_0_0"},{"__m":"__elem_a588f507_0_6"}]]],["KeyboardActivityLogger","init",[],[]],["FocusRing","init",[],[]],["BlueBarFixedBehaviorController","init",["__elem_45e94dd8_0_0"],[{"__m":"__elem_45e94dd8_0_0"}]],["HardwareCSS","init",[],[]],["NavigationAssistantController","init",["__elem_3fc3da18_0_0","__elem_51be6cb7_0_0","__inst_5b4d0c00_0_0","__inst_5b4d0c00_0_1","__inst_e5ad243d_0_0","__inst_e5ad243d_0_1"],[{"__m":"__elem_3fc3da18_0_0"},{"__m":"__elem_51be6cb7_0_0"},{"__m":"__inst_5b4d0c00_0_0"},{"__m":"__inst_5b4d0c00_0_1"},null,{"accessibilityPopoverMenu":{"__m":"__inst_e5ad243d_0_0"},"globalPopoverMenu":null,"sectionsPopoverMenu":{"__m":"__inst_e5ad243d_0_1"}}]],["__inst_e5ad243d_0_1"],["__inst_1de146dc_0_0"],["__inst_e5ad243d_0_0"],["__inst_1de146dc_0_1"],["AsyncRequestNectarLogging"],["TimezoneAutoset","setInputValue",["__elem_f46f4946_0_0"],[{"__m":"__elem_f46f4946_0_0"},1578564347]],["ScreenDimensionsAutoSet","setInputValue",["__elem_f46f4946_0_1"],[{"__m":"__elem_f46f4946_0_1"}]],["LoginFormController","init",["__elem_835c633a_0_0","__elem_1edd4980_0_0"],[{"__m":"__elem_835c633a_0_0"},{"__m":"__elem_1edd4980_0_0"},null,true,[]]],["BrowserPrefillLogging","initContactpointFieldLogging",[],[{"contactpointFieldID":"email","serverPrefill":""}]],["BrowserPrefillLogging","initPasswordFieldLogging",[],[{"passwordFieldID":"pass"}]],["Sketch","solveAndUpdateForm",[],["819201a3d1816e1191eac189a1ba1f39","a158c67edf18a11df066de983cb14fc0",5,"login_form"]],["FIGEntityPageLayout","registerAcrossTransitions",["__elem_9f5fac15_0_1"],[{"__m":"__elem_9f5fac15_0_1"},["._19sz","._2fvv > ._2yaa","._5rll ._1fsh ._2yaa"]]],["EntityPageSubNavigationLogger","register",["__elem_d3d2500b_0_0"],[{"__m":"__elem_d3d2500b_0_0"}]],["__inst_d3d2500b_0_0"],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["PageCreatePageButton.react","__elem_fc9f538f_0_0"],[{"constructor":{"__m":"PageCreatePageButton.react"},"concurrent_UNSTABLE":false,"props":{"fbid":300653326696613,"loggedOutSEOEnabled":false,"next":"https:\/\/www.facebook.com\/cgtnamerica\/posts\/"},"dummyElem":{"__m":"__elem_fc9f538f_0_0"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["FocusListener"],["FlipDirectionOnKeypress"],["EntityPageRenderer","constructAndRenderComponent",["PagesCoverContainer.react","__elem_a588f507_0_a"],[{"__m":"PagesCoverContainer.react"},{"pageID":"300653326696613","isMigratedShowPage":false,"coreData":{"currentCoverType":"cover_slideshow","canViewerEditProfile":false,"shouldShowEditMenuForAdmins":true,"hasCoverSet":true,"eventTourBadgeInfo":{"tourID":"","title":null,"subtitle":null,"eventTourBadgeStatus":"no_tour","shouldShowNux":false},"disableCoverVideoUploadOption":false},"coverData":{"cover_live_video":{"videoID":"","canEnable":false,"isEnabled":false,"renderedHeight":461},"cover_trailer":null,"cover_video":{"videoID":"","containerHeight":312,"containerWidth":820,"status":"published","videoLinkData":null,"isViewerAdmin":false,"shouldShowChooseFromCoverVideoMenu":false,"isFromParentPage":false,"isParentLocationPage":false,"shouldCoverVideoLoop":false,"offsetType":0,"offsetValue":0},"cover_slideshow":{"isCoverSlideshowEnabled":true,"isCoverSlideshowVideoEnabled":false,"items":[{"itemType":"photo","carouselMediaData":{"photoData":{"coverPhotoData":{"focus":{"height":0.5,"width":0.50118764845606},"id":"1662097130552219","original":{"height":315,"width":851},"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-9\/32238269_1662097133885552_6929157015939842048_n.jpg?_nc_cat=102&_nc_ohc=xJRnep4QfOoAQkxoajfWLB1kMdiT9XsWZSMdNyk7eqo7FFnDet_v3637g&_nc_ht=scontent-cdg2-1.xx&oh=e788ac0ad345adf6fec40c2d4957f177&oe=5E9ECE24"},"isEditable":false,"isLoading":false,"isOverlayEnabled":false,"isPreviewMode":false,"pageHasPhotos":true,"pageID":"300653326696613","pagePrimaryButton":null,"renderedHeight":312,"renderedWidth":820},"videoData":null},"thumbnailData":{"thumbnailID":null,"thumbnailURI":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-0\/c27.0.798.315a\/s160x160\/32238269_1662097133885552_6929157015939842048_n.jpg?_nc_cat=102&_nc_ohc=xJRnep4QfOoAQkxoajfWLB1kMdiT9XsWZSMdNyk7eqo7FFnDet_v3637g&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=c1c142f88c65b4e760f610a6a21f25a1&oe=5EABC257","thumbnailHeight":60,"thumbnailWidth":152}}],"thumbnailHeight":60,"thumbnailWidth":152,"containerHeight":312,"containerWidth":820,"shouldShowNUXTour":false,"isContentOptimizerOn":false,"shouldShowMenuNux":false,"shouldShowEditSlideshowTooltip":false},"cover_photo":{"coverPhotoData":{"focus":{"height":0.5,"width":0.50118764845606},"id":"1662097130552219","original":{"height":315,"width":851},"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-9\/32238269_1662097133885552_6929157015939842048_n.jpg?_nc_cat=102&_nc_ohc=xJRnep4QfOoAQkxoajfWLB1kMdiT9XsWZSMdNyk7eqo7FFnDet_v3637g&_nc_ht=scontent-cdg2-1.xx&oh=e788ac0ad345adf6fec40c2d4957f177&oe=5E9ECE24"},"isEditable":false,"isLoading":false,"isOverlayEnabled":false,"isPreviewMode":false,"pageDescription":null,"pageHasPhotos":true,"pageID":"300653326696613","pagePrimaryButton":null,"renderedHeight":312,"renderedWidth":820}}},{"__m":"__elem_a588f507_0_a"}]],["PagesPostsSearch","searchPosts",["__elem_a588f507_0_b","__elem_a588f507_0_c"],["300653326696613",{"__m":"__elem_a588f507_0_b"},{"__m":"__elem_a588f507_0_c"}]],["PageTimelineViewportTracking","init",[],[{"cta_logging_enabled":true,"ad_allocation_integrity_logging_enabled":false,"record_delay":300,"tracking_duration_config":{"min_height_to_be_visible":200,"min_fraction_to_be_visible":0.5,"timetracking_throttling_interval":100,"user_activity_polling_interval":5000,"time_to_be_considered_inactive":15000,"min_time_to_report_immediately":500,"min_fraction_for_additional_view":0,"local_storage_log_min_duration_ms":10000000,"scroll_throttling_interval":100,"mouse_throttling_interval":100,"keyboardThrottlingInterval":100,"active_state_duration":1000,"focused_state_duration":3500,"story_height_diff_to_change_state":25,"discard_vpvd_interval_threshold":90000},"vpv_debug":false,"vpvd_debug":false,"vpvd_analysis":false,"tracking_hooks":false}]],["FbFeedAccessible","informStoryContentInserted",[],["u_0_q"]],["EntstreamFeedObjectTracking","register",[],[{"nodeID":"u_0_q","actorIDs":["300653326696613"]}]],["FbFeedAccessible","informStoryContentInserted",[],["u_0_r"]],["EntstreamFeedObjectTracking","register",[],[{"nodeID":"u_0_r","actorIDs":["300653326696613"]}]],["FbFeedAccessible","informStoryContentInserted",[],["u_0_s"]],["EntstreamFeedObjectTracking","register",[],[{"nodeID":"u_0_s","actorIDs":["300653326696613"]}]],["FbFeedAccessible","informStoryContentInserted",[],["u_0_t"]],["EntstreamFeedObjectTracking","register",[],[{"nodeID":"u_0_t","actorIDs":["300653326696613"]}]],["FbFeedAccessible","informStoryContentInserted",[],["u_0_u"]],["EntstreamFeedObjectTracking","register",[],[{"nodeID":"u_0_u","actorIDs":["300653326696613"]}]],["FbFeedAccessible","informStoryContentInserted",[],["u_0_v"]],["EntstreamFeedObjectTracking","register",[],[{"nodeID":"u_0_v","actorIDs":["300653326696613"]}]],["FbFeedAccessible","informStoryContentInserted",[],["u_0_w"]],["EntstreamFeedObjectTracking","register",[],[{"nodeID":"u_0_w","actorIDs":["300653326696613"]}]],["FbFeedAccessible","informStoryContentInserted",[],["u_0_x"]],["EntstreamFeedObjectTracking","register",[],[{"nodeID":"u_0_x","actorIDs":["300653326696613"]}]],["FbFeedAccessible","informStoryContentInserted",[],["u_0_y"]],["EntstreamFeedObjectTracking","register",[],[{"nodeID":"u_0_y","actorIDs":["300653326696613"]}]],["FbFeedAccessible","informStoryContentInserted",[],["u_0_10"]],["EntstreamFeedObjectTracking","register",[],[{"nodeID":"u_0_10","actorIDs":["300653326696613"]}]],["FbFeedAccessible","informStoryContentInserted",[],["u_0_11"]],["EntstreamFeedObjectTracking","register",[],[{"nodeID":"u_0_11","actorIDs":["300653326696613","565225540184937"]}]],["FbFeedAccessible","informStoryContentInserted",[],["u_0_14"]],["EntstreamFeedObjectTracking","register",[],[{"nodeID":"u_0_14","actorIDs":["300653326696613"]}]],["FbFeedAccessible","informStoryContentInserted",[],["u_0_15"]],["EntstreamFeedObjectTracking","register",[],[{"nodeID":"u_0_15","actorIDs":["300653326696613"]}]],["FbFeedAccessible","informStoryContentInserted",[],["u_0_16"]],["EntstreamFeedObjectTracking","register",[],[{"nodeID":"u_0_16","actorIDs":["300653326696613"]}]],["__inst_1c03405d_0_0"],["FbFeedAccessible","informStoryContentInserted",[],["u_0_17"]],["EntstreamFeedObjectTracking","register",[],[{"nodeID":"u_0_17","actorIDs":["300653326696613","565225540184937"]}]],["FbFeedAccessible","informStoryContentInserted",[],["u_0_13"]],["EntstreamFeedObjectTracking","register",[],[{"nodeID":"u_0_13","actorIDs":["300653326696613","565225540184937"]}]],["FbFeedAccessible","informStoryContentInserted",[],["u_0_12"]],["EntstreamFeedObjectTracking","register",[],[{"nodeID":"u_0_12","actorIDs":["300653326696613","565225540184937"]}]],["FbFeedAccessible","informStoryContentInserted",[],["u_0_z"]],["EntstreamFeedObjectTracking","register",[],[{"nodeID":"u_0_z","actorIDs":["300653326696613","565225540184937"]}]],["FbFeedAccessible","informStoryContentInserted",[],["u_0_p"]],["EntstreamFeedObjectTracking","register",[],[{"nodeID":"u_0_p","actorIDs":["300653326696613"]}]],["ViewableImpressionTracking","init",[],[]],["DataAttributeUtils","moveAttributeToDataStore",["__elem_9fc087ed_0_0"],[{"__m":"__elem_9fc087ed_0_0"},"data-xt","data-xt"]],["DataAttributeUtils","moveXTVimp",["__elem_9fc087ed_0_0"],[{"__m":"__elem_9fc087ed_0_0"}]],["SLUtils","init",[],[{"cxononce":"aqdbdvcvbjd8d1cjbgcmd0dabactcqd4cpdab0d3cvcjcid4cpcid4bab0b2e7d8cjcidbcjdacldbdsbgbgdlb9b0b2cxb0aqcgdvcvbjd8d1ciapctciclbactcqd4cpdab0d3cvcjcid4cpcid4bab0b2e7d8cjcidbcjdacldbdsbgbgdlb9b0b0dsbgbgbib8b0codsbgbgdlb9b0chcjdsbgbgbib9b0b2cxbw"},[{"nonce":{"cxononce":"2d0f100o200b020l2e090h0m3f"},"className":{"cxononce":"oknso4msonouo8mvodovollj"}},{"nonce":{"cxononce":"gaf1fvefgnesf1eig9eueneeh0"},"className":{"cxononce":"0m110p210a030k2f0r0k0j3e"}},{"nonce":{"cxononce":"vstrsptxv9titru0vvtgu4u0uu"},"className":{"cxononce":"thstttv5tetnu5v6u4vbtsuq"}}]]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["ProfilePhotoPresenceGreenDot.react","__elem_fc9f538f_0_1"],[{"constructor":{"__m":"ProfilePhotoPresenceGreenDot.react"},"concurrent_UNSTABLE":false,"props":{"profileID":"300653326696613"},"dummyElem":{"__m":"__elem_fc9f538f_0_1"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["EntstreamAttachmentRelatedShare","loadRelatedAttachment",[],["u_0_19",2665690596840548,2662135313881724]],["Tooltip"],["LiveTimer","restart",[],[1578564347]],["ViewableImpressionTracking","init",[],[]],["DataAttributeUtils","moveAttributeToDataStore",["__elem_9fc087ed_0_1"],[{"__m":"__elem_9fc087ed_0_1"},"data-xt","data-xt"]],["DataAttributeUtils","moveXTVimp",["__elem_9fc087ed_0_1"],[{"__m":"__elem_9fc087ed_0_1"}]],["ViewableImpressionTracking","init",[],[]],["DataAttributeUtils","moveAttributeToDataStore",["__elem_9fc087ed_0_2"],[{"__m":"__elem_9fc087ed_0_2"},"data-xt","data-xt"]],["DataAttributeUtils","moveXTVimp",["__elem_9fc087ed_0_2"],[{"__m":"__elem_9fc087ed_0_2"}]],["SLUtils","init",[],[{"cxononce":"ypxowgx8zgxrxiwwzjx1xjxpz9xax5xnx6xpz3xgx8wwwxxnx6wxxnz9z3z1wsxrwwwxxowwxpx2xowjzjzjwazaz3z1xez3ypwzwgx8zgxrxiwxyqxawxx2z9xax5xnx6xpz3xgx8wwwxxnx6wxxnz9z3z1wsxrwwwxxowwxpx2xowjzjzjwazaz3z3wjzjzjzhzbz3x7wjzjzjwazaz3wywwwjzjzjzhzaz3z1xey7"},[{"nonce":{"cxononce":"azcxe2cmbad1d8crawd3cvcobp"},"className":{"cxononce":"877f8n9z848d8r9w8u8c869g"}},{"nonce":{"cxononce":"tivluvvfu3vsvlvathvuv7veso"},"className":{"cxononce":"e8fnengvf0eteag1eleaedh8"}},{"nonce":{"cxononce":"3v646y5i465x645n3s5z5r5n4l"},"className":{"cxononce":"jqkuk2hujljskehtkfhwk3j5"}}]]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["ProfilePhotoPresenceGreenDot.react","__elem_fc9f538f_0_2"],[{"constructor":{"__m":"ProfilePhotoPresenceGreenDot.react"},"concurrent_UNSTABLE":false,"props":{"profileID":"300653326696613"},"dummyElem":{"__m":"__elem_fc9f538f_0_2"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["SLUtils","init",[],[{"cxononce":"hjfeeefuh6fdf4fqh5fnf5ffgzfsfzfhfwffhlf6fufqfrfhfwfrfhgzhlhneifdfqfrfefqfffkfeedh5h5f0gwhlhnf8hlhjfpeefuh6fdf4frhgfsfrfkgzfsfzfhfwffhlf6fufqfrfhfwfrfhgzhlhneifdfqfrfefqfffkfeedh5h5f0gwhlhledh5h5h7gxhlfxedh5h5f0gwhlfofqedh5h5h7gwhlhnf8gp"},[{"nonce":{"cxononce":"2x1f0o10381j1q152y1h19161z"},"className":{"cxononce":"zgy8z0xozjzayoxrytzbzhwf"}},{"nonce":{"cxononce":"wdyizgxswgybyiy5wey9y0xtwz"},"className":{"cxononce":"q1pmpys6qdqkq3rspwq3q4qt"}},{"nonce":{"cxononce":"2j0c160m1y050c0r2g070v0r39"},"className":{"cxononce":"wmxqw2yawhwowey9wfycw3yp"}}]]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["ProfilePhotoPresenceGreenDot.react","__elem_fc9f538f_0_3"],[{"constructor":{"__m":"ProfilePhotoPresenceGreenDot.react"},"concurrent_UNSTABLE":false,"props":{"profileID":"300653326696613"},"dummyElem":{"__m":"__elem_fc9f538f_0_3"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["EntstreamAttachmentRelatedShare","loadRelatedAttachment",[],["u_0_1m",3491040114302318,3874293642611427]],["EntstreamAttachmentRelatedShare","loadRelatedAttachment",[],["u_0_1n",3585524241518795,3876078902432901]],["ScrollAwareDOM"],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["UnauthenticatedUFI.react","__elem_fc9f538f_0_4","__inst_8a751efa_0_0"],[{"constructor":{"__m":"UnauthenticatedUFI.react"},"concurrent_UNSTABLE":false,"props":{"bigPipeContext":{"__bigPipeContext":1},"defaultActorID":"","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"hideUntilVisibleOrDD":false,"isCommentsCSSCloakingEnabled":false,"queryVariables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjY2MTg0NjMzNzI0Mzk1NQ==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661846337243955","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"storyRenderLocation":"homepage_stream","streamLastViewTime":null,"usePreloadedQueryRenderer":true},"dummyElem":{"__m":"__elem_fc9f538f_0_4"},"acrossTransitions":false,"clobberSiblings":false,"preloader":{"__m":"__inst_8a751efa_0_0"},"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["UnauthenticatedUFI.react","__elem_fc9f538f_0_5","__inst_8a751efa_0_1"],[{"constructor":{"__m":"UnauthenticatedUFI.react"},"concurrent_UNSTABLE":false,"props":{"bigPipeContext":{"__bigPipeContext":1},"defaultActorID":"","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"hideUntilVisibleOrDD":false,"isCommentsCSSCloakingEnabled":false,"queryVariables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjY2MjEzNTMwNzIxNTA1OA==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2662135307215058","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"storyRenderLocation":"homepage_stream","streamLastViewTime":null,"usePreloadedQueryRenderer":true},"dummyElem":{"__m":"__elem_fc9f538f_0_5"},"acrossTransitions":false,"clobberSiblings":false,"preloader":{"__m":"__inst_8a751efa_0_1"},"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["UnauthenticatedUFI.react","__elem_fc9f538f_0_6","__inst_8a751efa_0_2"],[{"constructor":{"__m":"UnauthenticatedUFI.react"},"concurrent_UNSTABLE":false,"props":{"bigPipeContext":{"__bigPipeContext":1},"defaultActorID":"","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"hideUntilVisibleOrDD":false,"isCommentsCSSCloakingEnabled":false,"queryVariables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjY2MTA5NTMxNzMxOTA1Nw==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661095317319057","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"storyRenderLocation":"homepage_stream","streamLastViewTime":null,"usePreloadedQueryRenderer":true},"dummyElem":{"__m":"__elem_fc9f538f_0_6"},"acrossTransitions":false,"clobberSiblings":false,"preloader":{"__m":"__inst_8a751efa_0_2"},"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ViewableImpressionTracking","init",[],[]],["DataAttributeUtils","moveAttributeToDataStore",["__elem_9fc087ed_0_3"],[{"__m":"__elem_9fc087ed_0_3"},"data-xt","data-xt"]],["DataAttributeUtils","moveXTVimp",["__elem_9fc087ed_0_3"],[{"__m":"__elem_9fc087ed_0_3"}]],["ViewableImpressionTracking","init",[],[]],["DataAttributeUtils","moveAttributeToDataStore",["__elem_9fc087ed_0_4"],[{"__m":"__elem_9fc087ed_0_4"},"data-xt","data-xt"]],["DataAttributeUtils","moveXTVimp",["__elem_9fc087ed_0_4"],[{"__m":"__elem_9fc087ed_0_4"}]],["ViewableImpressionTracking","init",[],[]],["DataAttributeUtils","moveAttributeToDataStore",["__elem_9fc087ed_0_5"],[{"__m":"__elem_9fc087ed_0_5"},"data-xt","data-xt"]],["DataAttributeUtils","moveXTVimp",["__elem_9fc087ed_0_5"],[{"__m":"__elem_9fc087ed_0_5"}]],["ViewableImpressionTracking","init",[],[]],["DataAttributeUtils","moveAttributeToDataStore",["__elem_9fc087ed_0_6"],[{"__m":"__elem_9fc087ed_0_6"},"data-xt","data-xt"]],["DataAttributeUtils","moveXTVimp",["__elem_9fc087ed_0_6"],[{"__m":"__elem_9fc087ed_0_6"}]],["ViewableImpressionTracking","init",[],[]],["DataAttributeUtils","moveAttributeToDataStore",["__elem_9fc087ed_0_7"],[{"__m":"__elem_9fc087ed_0_7"},"data-xt","data-xt"]],["DataAttributeUtils","moveXTVimp",["__elem_9fc087ed_0_7"],[{"__m":"__elem_9fc087ed_0_7"}]],["ViewableImpressionTracking","init",[],[]],["DataAttributeUtils","moveAttributeToDataStore",["__elem_9fc087ed_0_8"],[{"__m":"__elem_9fc087ed_0_8"},"data-xt","data-xt"]],["DataAttributeUtils","moveXTVimp",["__elem_9fc087ed_0_8"],[{"__m":"__elem_9fc087ed_0_8"}]],["ViewableImpressionTracking","init",[],[]],["DataAttributeUtils","moveAttributeToDataStore",["__elem_9fc087ed_0_9"],[{"__m":"__elem_9fc087ed_0_9"},"data-xt","data-xt"]],["DataAttributeUtils","moveXTVimp",["__elem_9fc087ed_0_9"],[{"__m":"__elem_9fc087ed_0_9"}]],["FBLynx","setupDelegation",[],[]],["LitestandShareAttachment","init",["__elem_a588f507_0_d"],[{"__m":"__elem_a588f507_0_d"}]],["ViewableImpressionTracking","init",[],[]],["DataAttributeUtils","moveAttributeToDataStore",["__elem_9fc087ed_0_a"],[{"__m":"__elem_9fc087ed_0_a"},"data-xt","data-xt"]],["DataAttributeUtils","moveXTVimp",["__elem_9fc087ed_0_a"],[{"__m":"__elem_9fc087ed_0_a"}]],["LitestandShareAttachment","init",["__elem_a588f507_0_e"],[{"__m":"__elem_a588f507_0_e"}]],["ViewableImpressionTracking","init",[],[]],["DataAttributeUtils","moveAttributeToDataStore",["__elem_9fc087ed_0_b"],[{"__m":"__elem_9fc087ed_0_b"},"data-xt","data-xt"]],["DataAttributeUtils","moveXTVimp",["__elem_9fc087ed_0_b"],[{"__m":"__elem_9fc087ed_0_b"}]],["ViewableImpressionTracking","init",[],[]],["DataAttributeUtils","moveAttributeToDataStore",["__elem_9fc087ed_0_c"],[{"__m":"__elem_9fc087ed_0_c"},"data-xt","data-xt"]],["DataAttributeUtils","moveXTVimp",["__elem_9fc087ed_0_c"],[{"__m":"__elem_9fc087ed_0_c"}]],["ViewableImpressionTracking","init",[],[]],["DataAttributeUtils","moveAttributeToDataStore",["__elem_9fc087ed_0_d"],[{"__m":"__elem_9fc087ed_0_d"},"data-xt","data-xt"]],["DataAttributeUtils","moveXTVimp",["__elem_9fc087ed_0_d"],[{"__m":"__elem_9fc087ed_0_d"}]],["ViewableImpressionTracking","init",[],[]],["DataAttributeUtils","moveAttributeToDataStore",["__elem_9fc087ed_0_e"],[{"__m":"__elem_9fc087ed_0_e"},"data-xt","data-xt"]],["DataAttributeUtils","moveXTVimp",["__elem_9fc087ed_0_e"],[{"__m":"__elem_9fc087ed_0_e"}]],["ViewableImpressionTracking","init",[],[]],["DataAttributeUtils","moveAttributeToDataStore",["__elem_9fc087ed_0_f"],[{"__m":"__elem_9fc087ed_0_f"},"data-xt","data-xt"]],["DataAttributeUtils","moveXTVimp",["__elem_9fc087ed_0_f"],[{"__m":"__elem_9fc087ed_0_f"}]],["ViewableImpressionTracking","init",[],[]],["DataAttributeUtils","moveAttributeToDataStore",["__elem_9fc087ed_0_g"],[{"__m":"__elem_9fc087ed_0_g"},"data-xt","data-xt"]],["DataAttributeUtils","moveXTVimp",["__elem_9fc087ed_0_g"],[{"__m":"__elem_9fc087ed_0_g"}]],["__inst_b7ee1bfc_0_0"],["__inst_b7ee1bfc_0_1"],["SLUtils","init",[],[{"cxononce":"fzgygehef6gxh4hqf5hnh5gzffhchjh1hggzflh6hehqhrh1hghrh1ffflfng2gxhqhrgyhqgzhkgygdf5f5gkfcflfnh8flfzhpgehef6gxh4hrfwhchrhkffhchjh1hggzflh6hehqhrh1hghrh1ffflfng2gxhqhrgyhqgzhkgygdf5f5gkfcflflgdf5f5f7fdflhhgdf5f5gkfcflhohqgdf5f5f7fcflfnh8ep"},[{"nonce":{"cxononce":"e6bob3c3dfbkbtcee5bmcacdcw"},"className":{"cxononce":"v5ulvltdv6vfvxtevsvev4sy"}},{"nonce":{"cxononce":"mboknmoen2otoko3m8ovo6oflp"},"className":{"cxononce":"1i051l2x160z1g3b1n1g1f2i"}},{"nonce":{"cxononce":"vju0tatevmttu0trvgtvtntru9"},"className":{"cxononce":"12z11v12n11b13012t12b11812a11512mzw"}}]]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["ProfilePhotoPresenceGreenDot.react","__elem_fc9f538f_0_7"],[{"constructor":{"__m":"ProfilePhotoPresenceGreenDot.react"},"concurrent_UNSTABLE":false,"props":{"profileID":"300653326696613"},"dummyElem":{"__m":"__elem_fc9f538f_0_7"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["LitestandShareAttachment","init",["__elem_a588f507_0_f"],[{"__m":"__elem_a588f507_0_f"}]],["SLUtils","init",[],[{"cxononce":"uusrtjt7ujsosht3ugsysgsquat5tasst9squwsjt7t3t2sst9t2ssuauwuytnsot3t2srt3sqsxsrtgugugu5u9uwuysluwuut0tjt7ujsosht2utt5t2sxuat5tasst9squwsjt7t3t2sst9t2ssuauwuytnsot3t2srt3sqsxsrtgugugu5u9uwuwtguguguiu8uwt8tgugugu5u9uwt1t3tguguguiu9uwuyslvs"},[{"nonce":{"cxononce":"qfrxqusaq2rtrks7qcrvs3s4pl"},"className":{"cxononce":"6z5z6j576w6p6f546a6o6y3s"}},{"nonce":{"cxononce":"c9dqcodwbodjdqe1cadhe4dxbb"},"className":{"cxononce":"dhd2dmcae1dsdjbodkdjdcax"}},{"nonce":{"cxononce":"e3bwayc6dibpbwcbe0brcfcbd1"},"className":{"cxononce":"d9dxcpbdd6czclbeckbjcobu"}}]]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["ProfilePhotoPresenceGreenDot.react","__elem_fc9f538f_0_8"],[{"constructor":{"__m":"ProfilePhotoPresenceGreenDot.react"},"concurrent_UNSTABLE":false,"props":{"profileID":"300653326696613"},"dummyElem":{"__m":"__elem_fc9f538f_0_8"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["LitestandShareAttachment","init",["__elem_a588f507_0_g"],[{"__m":"__elem_a588f507_0_g"}]],["SLUtils","init",[],[{"cxononce":"3j0y0e1e2q0x141q2p1n150z2z1c1j111g0z35161e1q1r111g1r112z3537020x1q1r0y1q0z1k0y0d2p2p0k2w353718353j1p0e1e2q0x141r3g1c1r1k2z1c1j111g0z35161e1q1r111g1r112z3537020x1q1r0y1q0z1k0y0d2p2p0k2w35350d2p2p2r2x351h0d2p2p0k2w351o1q0d2p2p2r2w35371829"},[{"nonce":{"cxononce":"ad8f788oa08b828lae898h8m9n"},"className":{"cxononce":"jiiaj2lajhj8iql9ivj9jjjx"}},{"nonce":{"cxononce":"c7dccme2budldcdzc4dndue3bd"},"className":{"cxononce":"pipxplqxp6ozpgrbpnpgpfsa"}},{"nonce":{"cxononce":"r9oypwpkqwp7oyphrap5pdphsb"},"className":{"cxononce":"qfprpvs3q8qhq7s0q6s5puqo"}}]]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["ProfilePhotoPresenceGreenDot.react","__elem_fc9f538f_0_9"],[{"constructor":{"__m":"ProfilePhotoPresenceGreenDot.react"},"concurrent_UNSTABLE":false,"props":{"profileID":"300653326696613"},"dummyElem":{"__m":"__elem_fc9f538f_0_9"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["LitestandShareAttachment","init",["__elem_a588f507_0_h"],[{"__m":"__elem_a588f507_0_h"}]],["LitestandShareAttachment","init",["__elem_a588f507_0_i"],[{"__m":"__elem_a588f507_0_i"}]],["SLUtils","init",[],[{"cxononce":"v4u5sxtpvxu6tztdvytgtyu4votrtku2tnu4vitxtptdtcu2tntcu2vovivgt9u6tdtcu5tdu4tju5syvyvysrvrvivgtvviv4tesxtpvxu6tztcv7trtctjvotrtku2tnu4vitxtptdtcu2tntcu2vovivgt9u6tdtcu5tdu4tju5syvyvysrvrvivisyvyvyvwvqvitmsyvyvysrvrvitftdsyvyvyvwvrvivgtvum"},[{"nonce":{"cxononce":"shuzvkukt8v3uuu9siv1uduatr"},"className":{"cxononce":"y7yrynwfy4xxybwcyexwy6xo"}},{"nonce":{"cxononce":"nvlomilynalhlom3nsljm6lzol"},"className":{"cxononce":"tjt0tkvsu3tuthvatmthteuj"}},{"nonce":{"cxononce":"1a3d2n2r1f343d3219362y3200"},"className":{"cxononce":"p0q4pcqoozp6poqrppqupds3"}}]]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["ProfilePhotoPresenceGreenDot.react","__elem_fc9f538f_0_a"],[{"constructor":{"__m":"ProfilePhotoPresenceGreenDot.react"},"concurrent_UNSTABLE":false,"props":{"profileID":"300653326696613"},"dummyElem":{"__m":"__elem_fc9f538f_0_a"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["SLUtils","init",[],[{"cxononce":"3e130b1j2v10191n2s1q1812321h1e0w1d12381b1j1n1m0w1d1m0w32383a07101n1m131n121p13082s2s0h31383a15383e1k0b1j2v10191m3d1h1m1p321h1e0w1d12381b1j1n1m0w1d1m0w32383a07101n1m131n121p13082s2s0h313838082s2s2u30381c082s2s0h31381l1n082s2s2u31383a152c"},[{"nonce":{"cxononce":"a58n7w80a88j8q8da68h898e8z"},"className":{"cxononce":"5l6d613t5m5f5x3u5s5e5k56"}},{"nonce":{"cxononce":"oyr9s3r3prrgr9qqoxriqvr2q4"},"className":{"cxononce":"qxsaqupir9rgqzp4qsqzr0px"}},{"nonce":{"cxononce":"dxbmasc8dkbvbmc5dybtc1c5d7"},"className":{"cxononce":"3f2b331r3g392r1o2q1l320c"}}]]],["SLUtils","init",[],[{"cxononce":"799kac947s9n9e907v8x9f9l7l96999r9a9l7f9c9490919r9a919r7l7f7dag9n90919k909l8y9kaf7v7va67m7f7d9i7f7993ac947s9n9e917a96918y7l96999r9a9l7f9c9490919r9a919r7l7f7dag9n90919k909l8y9kaf7v7va67m7f7faf7v7v7t7n7f9baf7v7va67m7f9290af7v7v7t7m7f7d9i8b"},[{"nonce":{"cxononce":"c9dfcodwbodjdqe1cadhe5e2bb"},"className":{"cxononce":"616t5l49625v5h4a5c5u604q"}},{"nonce":{"cxononce":"ncm7mxlhnplym7lknflwlplgo6"},"className":{"cxononce":"0a1l052d0m0v082307080f2u"}},{"nonce":{"cxononce":"vcu7t5thvptyu7tkvftwtotkue"},"className":{"cxononce":"sktoswu8sjsqt8ubt9uesxvn"}}]]],["VideoFeedRegister","registerVideoUnit",["__markup_072b8e64_0_0","HTML","__elem_a588f507_0_j","__elem_a648e52c_0_0","__elem_a588f507_0_k","__inst_a648e52c_0_0"],[{"fallback_link":{"__m":"__markup_072b8e64_0_0"},"root_element":{"__m":"__elem_a588f507_0_j"},"video_element":{"__m":"__elem_a648e52c_0_0"},"video_container":{"__m":"__elem_a588f507_0_k"}},{"controller":{"__m":"__inst_a648e52c_0_0"},"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","startsMuted":false,"flash_id":"id_5e16fafba66796067554822","viewport_autoplay":false,"video_ids":["2810732512322033"],"channelVersion":null,"abort_loading_blocked":false,"isLiveStreaming":false,"videoChannelCaller":"channel_view_from_page_timeline","autoPlayWithChannelViewOrSnowlift":false,"wnsEnabled":false,"isGamingVideo":false}]],["VideosRenderingInstrumentation","storeRenderTime",["__elem_a648e52c_0_0"],[{"__m":"__elem_a648e52c_0_0"}]],["__inst_a648e52c_0_0"],["__inst_6d29ee41_0_0"],["__inst_2223e126_0_0"],["__inst_a176866d_0_0"],["VideoDisplayTimePlayButton","register",["__elem_8c33f2cf_0_0","__elem_492d06b7_0_0"],[{"__m":"__elem_8c33f2cf_0_0"},{"__m":"__elem_492d06b7_0_0"}]],["__inst_8c33f2cf_0_0"],["Focus","relocate",["__elem_8937e029_0_0","__elem_2afd4650_0_0"],[{"__m":"__elem_8937e029_0_0"},{"__m":"__elem_2afd4650_0_0"}]],["__inst_492d06b7_0_0"],["ReactRenderer","constructAndRenderComponent",["PlayerKeyboardControls.react","__inst_a648e52c_0_0","__elem_444213d2_0_0"],[{"__m":"PlayerKeyboardControls.react"},{"controller":{"__m":"__inst_a648e52c_0_0"},"isLiveRewindEnabled":false,"isLiveStreaming":false},{"__m":"__elem_444213d2_0_0"}]],["ReactRenderer","constructAndRenderComponent",["VideoVODIndicator.react","__inst_a648e52c_0_0","__elem_a588f507_0_n"],[{"__m":"VideoVODIndicator.react"},{"renderLocation":"videoNewsFeedUnit","vpc":{"__m":"__inst_a648e52c_0_0"}},{"__m":"__elem_a588f507_0_n"}]],["__inst_21a8c1d4_0_0"],["__inst_c5b6bd12_0_0"],["__inst_dbb8a0b1_0_0"],["__inst_c523de71_0_0"],["__inst_1516ab8a_0_0"],["__inst_74f26af1_0_0"],["__inst_9f6501f1_0_0"],["__inst_8a4b6a17_0_0"],["__inst_96dc3ae7_0_0"],["__inst_e698bc89_0_0"],["__inst_70689822_0_0"],["__inst_70dbca80_0_0"],["SLUtils","init",[],[{"cxononce":"wky1ytyhw9y2xvydway8xuy0w0yjyky6yny0wqxtyhydycy6ynycy6w0wqwoyxy2ydycy1ydy0yby1yuwawazjw3wqwoxzwqwkyeytyhw9y2xvycwnyjycybw0yjyky6yny0wqxtyhydycy6ynycy6w0wqwoyxy2ydycy1ydy0yby1yuwawazjw3wqwqyuwawaw8w2wqymyuwawazjw3wqyfydyuwawaw8w3wqwoxzxm"},[{"nonce":{"cxononce":"hzkdl2juiik9k0jrhwkbjnjoix"},"className":{"cxononce":"ewfoeggoezeqecgre9erexh7"}},{"nonce":{"cxononce":"zcxbw9xhytx2xbxkzfx0xpxgye"},"className":{"cxononce":"9z9ga08oajaa9x86a29x9u7f"}},{"nonce":{"cxononce":"uesxtzsruzt4sxsmudt6sismvc"},"className":{"cxononce":"0b0z0v270c050j240i210u3g"}}]]],["SLUtils","init",[],[{"cxononce":"swulv5v1stumufupsuusueukskv3uwuiuzuktaudv1upuouiuzuouisktat8vhumupuoulupukuvulv6susuvvsntat8ubtaswuqv5v1stumufuoszv3uouvskv3uwuiuzuktaudv1upuouiuzuouisktat8vhumupuoulupukuvulv6susuvvsntatav6sususssmtauyv6susuvvsntaurupv6sususssntat8ubu6"},[{"nonce":{"cxononce":"ddcbb4bwe4cfc6bldecdbpbmcv"},"className":{"cxononce":"kxkdkhj5kyl7ktj6kol6kwhu"}},{"nonce":{"cxononce":"g7eofqeigqexeoefg4ezeaejh5"},"className":{"cxononce":"q9oyqmryq5pwqbs0qkqbqcrh"}},{"nonce":{"cxononce":"bxe2d8dcc0dve2dpbydtdldpar"},"className":{"cxononce":"edfhepg1eaejf1g2f0g7eohe"}}]]],["SLUtils","init",[],[{"cxononce":"e7bmb2c2deblbsceddcbbtbndnc0c7bpc4bndtbuc2cecfbpc4cfbpdndtdvaqblcecfbmcebnc8bmb1ddddb8dkdtdvbwdte7cdb2c2deblbscfe4c0cfc8dnc0c7bpc4bndtbuc2cecfbpc4cfbpdndtdvaqblcecfbmcebnc8bmb1ddddb8dkdtdtb1dddddfdldtc5b1ddddb8dkdtccceb1dddddfdkdtdvbwcx"},[{"nonce":{"cxononce":"714n3w4w684j4q59724h555a5v"},"className":{"cxononce":"veuevutmvdv4vqtlvnv5vft5"}},{"nonce":{"cxononce":"ewgfh5gledg6gfgoezg4gtgkfq"},"className":{"cxononce":"ijiwicjohzi6ihkaieihiml3"}},{"nonce":{"cxononce":"huk5kzjzinkck5jmhtkejqjmj0"},"className":{"cxononce":"tgsstsv4tftmu4v7u5vattur"}}]]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["ProfilePhotoPresenceGreenDot.react","__elem_fc9f538f_0_b"],[{"constructor":{"__m":"ProfilePhotoPresenceGreenDot.react"},"concurrent_UNSTABLE":false,"props":{"profileID":"300653326696613"},"dummyElem":{"__m":"__elem_fc9f538f_0_b"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ViewableImpressionTracking","init",[],[]],["DataAttributeUtils","moveAttributeToDataStore",["__elem_9fc087ed_0_h"],[{"__m":"__elem_9fc087ed_0_h"},"data-xt","data-xt"]],["DataAttributeUtils","moveXTVimp",["__elem_9fc087ed_0_h"],[{"__m":"__elem_9fc087ed_0_h"}]],["ViewableImpressionTracking","init",[],[]],["DataAttributeUtils","moveAttributeToDataStore",["__elem_9fc087ed_0_i"],[{"__m":"__elem_9fc087ed_0_i"},"data-xt","data-xt"]],["DataAttributeUtils","moveXTVimp",["__elem_9fc087ed_0_i"],[{"__m":"__elem_9fc087ed_0_i"}]],["SLUtils","init",[],[{"cxononce":"a78i7y82aa8h8o8ea98b8p8jaj80878l848j9t8q828e8f8l848f8laj9t9v7m8h8e8f8i8e8j888i7xa9a978ag9t9v8s9ta78d7y82aa8h8o8fa4808f88aj80878l848j9t8q828e8f8l848f8laj9t9v7m8h8e8f8i8e8j888i7xa9a978ag9t9t7xa9a9abah9t857xa9a978ag9t8c8e7xa9a9abag9t9v8s8x"},[{"nonce":{"cxononce":"u3v5uivqtiv9vgvvu0vbvzvst1"},"className":{"cxononce":"656p5p4d665z5d4e5g5y644u"}},{"nonce":{"cxononce":"svuwvyuasyupuwunssuruiubtd"},"className":{"cxononce":"0w0j1b3j1o1h0y2p190y1124"}},{"nonce":{"cxononce":"6w4v3t516d4m4v546z4k58545y"},"className":{"cxononce":"g3h7gnefg4gdgrecgqe9gmfo"}}]]],["SLUtils","init",[],[{"cxononce":"8t9s98a8809va2ak83aha39t89aaad9zae9t8ja0a8akal9zaeal9z898j8h8w9vakal9sak9tai9s9b83839i8a8j8ha68j8tan98a8809va2al8uaaalai89aaad9zae9t8ja0a8akal9zaeal9z898j8h8w9vakal9sak9tai9s9b83839i8a8j8j9b8383818b8jaf9b83839i8a8jamak9b8383818a8j8ha67n"},[{"nonce":{"cxononce":"653r4s405c3n3u4d663l494e6r"},"className":{"cxononce":"vauivqtiv9vgvuthvzvhvbt1"}},{"nonce":{"cxononce":"ewgfh5gledg6gfgoezg4gtgkfq"},"className":{"cxononce":"bdbubacmatb0bfd4b8bfbgdx"}},{"nonce":{"cxononce":"x4zjyhytxhzazjywx7z8z0yww6"},"className":{"cxononce":"jfibj3lbjgj9irl8iql5j2jw"}}]]],["SLUtils","init",[],[{"cxononce":"nuljmjlznblglpm3n8m6lolinilxlulcltlinolrlzm3m2lcltm2lcninonqmflgm3m2ljm3lim5ljmgn8n8mpnhnonqllnonum0mjlznblglpm2ntlxm2m5nilxlulcltlinolrlzm3m2lcltm2lcninonqmflgm3m2ljm3lim5ljmgn8n8mpnhnonomgn8n8nangnolsmgn8n8mpnhnom1m3mgn8n8nanhnonqllok"},[{"nonce":{"cxononce":"x9zbykyoxcz7zez1xaz5yxz2w3"},"className":{"cxononce":"9jaj937r9g9p977o9a9o9i84"}},{"nonce":{"cxononce":"ifjkkmkai2jtjkk7icjvk2kbjd"},"className":{"cxononce":"lwmfm3nflkldlynpm1lyltoo"}},{"nonce":{"cxononce":"9a7t8v779f7k7t7i997m7e7i9s"},"className":{"cxononce":"646s5k48635u5g4b5h4e5l4r"}}]]],["LitestandShareAttachment","init",["__elem_a588f507_0_p"],[{"__m":"__elem_a588f507_0_p"}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["UnauthenticatedUFI.react","__elem_fc9f538f_0_c","__inst_8a751efa_0_3"],[{"constructor":{"__m":"UnauthenticatedUFI.react"},"concurrent_UNSTABLE":false,"props":{"bigPipeContext":{"__bigPipeContext":1},"defaultActorID":"","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"hideUntilVisibleOrDD":false,"isCommentsCSSCloakingEnabled":false,"queryVariables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6NTc1NTUxMjA2NjE0OTAx","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2659799267448662","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"storyRenderLocation":"homepage_stream","streamLastViewTime":null,"usePreloadedQueryRenderer":true},"dummyElem":{"__m":"__elem_fc9f538f_0_c"},"acrossTransitions":false,"clobberSiblings":false,"preloader":{"__m":"__inst_8a751efa_0_3"},"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["ProfilePhotoPresenceGreenDot.react","__elem_fc9f538f_0_d"],[{"constructor":{"__m":"ProfilePhotoPresenceGreenDot.react"},"concurrent_UNSTABLE":false,"props":{"profileID":"300653326696613"},"dummyElem":{"__m":"__elem_fc9f538f_0_d"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["ProfilePhotoPresenceGreenDot.react","__elem_fc9f538f_0_e"],[{"constructor":{"__m":"ProfilePhotoPresenceGreenDot.react"},"concurrent_UNSTABLE":false,"props":{"profileID":"300653326696613"},"dummyElem":{"__m":"__elem_fc9f538f_0_e"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["ProfilePhotoPresenceGreenDot.react","__elem_fc9f538f_0_f"],[{"constructor":{"__m":"ProfilePhotoPresenceGreenDot.react"},"concurrent_UNSTABLE":false,"props":{"profileID":"300653326696613"},"dummyElem":{"__m":"__elem_fc9f538f_0_f"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["ProfilePhotoPresenceGreenDot.react","__elem_fc9f538f_0_g"],[{"constructor":{"__m":"ProfilePhotoPresenceGreenDot.react"},"concurrent_UNSTABLE":false,"props":{"profileID":"300653326696613"},"dummyElem":{"__m":"__elem_fc9f538f_0_g"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["ProfilePhotoPresenceGreenDot.react","__elem_fc9f538f_0_h"],[{"constructor":{"__m":"ProfilePhotoPresenceGreenDot.react"},"concurrent_UNSTABLE":false,"props":{"profileID":"300653326696613"},"dummyElem":{"__m":"__elem_fc9f538f_0_h"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["UFILiveStreamingComments"],["UFIThreadedFacecastCommentsContainer.react"],["VideoFeedRegister","registerVideoUnit",["__markup_072b8e64_0_1","HTML","__elem_a588f507_0_q","__elem_a648e52c_0_1","__elem_a588f507_0_r","__inst_a648e52c_0_1"],[{"fallback_link":{"__m":"__markup_072b8e64_0_1"},"root_element":{"__m":"__elem_a588f507_0_q"},"video_element":{"__m":"__elem_a648e52c_0_1"},"video_container":{"__m":"__elem_a588f507_0_r"}},{"controller":{"__m":"__inst_a648e52c_0_1"},"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","startsMuted":false,"flash_id":"id_5e16fafbbe8172011379830","viewport_autoplay":false,"video_ids":["575551206614901"],"channelVersion":null,"abort_loading_blocked":false,"isLiveStreaming":false,"videoChannelCaller":"channel_view_from_page_timeline","autoPlayWithChannelViewOrSnowlift":false,"wnsEnabled":false,"isGamingVideo":false}]],["VideosRenderingInstrumentation","storeRenderTime",["__elem_a648e52c_0_1"],[{"__m":"__elem_a648e52c_0_1"}]],["__inst_a648e52c_0_1"],["__inst_6d29ee41_0_1"],["__inst_2223e126_0_1"],["__inst_a176866d_0_1"],["VideoDisplayTimePlayButton","register",["__elem_8c33f2cf_0_1","__elem_492d06b7_0_2"],[{"__m":"__elem_8c33f2cf_0_1"},{"__m":"__elem_492d06b7_0_2"}]],["__inst_8c33f2cf_0_1"],["Focus","relocate",["__elem_8937e029_0_1","__elem_2afd4650_0_1"],[{"__m":"__elem_8937e029_0_1"},{"__m":"__elem_2afd4650_0_1"}]],["__inst_492d06b7_0_1"],["ReactRenderer","constructAndRenderComponent",["PlayerKeyboardControls.react","__inst_a648e52c_0_1","__elem_444213d2_0_1"],[{"__m":"PlayerKeyboardControls.react"},{"controller":{"__m":"__inst_a648e52c_0_1"},"isLiveRewindEnabled":false,"isLiveStreaming":false},{"__m":"__elem_444213d2_0_1"}]],["ReactRenderer","constructAndRenderComponent",["VideoVODIndicator.react","__inst_a648e52c_0_1","__elem_a588f507_0_u"],[{"__m":"VideoVODIndicator.react"},{"renderLocation":"videoNewsFeedUnit","vpc":{"__m":"__inst_a648e52c_0_1"}},{"__m":"__elem_a588f507_0_u"}]],["__inst_21a8c1d4_0_1"],["__inst_c5b6bd12_0_1"],["__inst_dbb8a0b1_0_1"],["__inst_c523de71_0_1"],["__inst_1516ab8a_0_1"],["__inst_74f26af1_0_1"],["__inst_9f6501f1_0_1"],["__inst_8a4b6a17_0_1"],["__inst_96dc3ae7_0_1"],["__inst_e698bc89_0_1"],["__inst_70689822_0_1"],["__inst_70dbca80_0_1"],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["ProfilePhotoPresenceGreenDot.react","__elem_fc9f538f_0_i"],[{"constructor":{"__m":"ProfilePhotoPresenceGreenDot.react"},"concurrent_UNSTABLE":false,"props":{"profileID":"300653326696613"},"dummyElem":{"__m":"__elem_fc9f538f_0_i"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["ProfilePhotoPresenceGreenDot.react","__elem_fc9f538f_0_j"],[{"constructor":{"__m":"ProfilePhotoPresenceGreenDot.react"},"concurrent_UNSTABLE":false,"props":{"profileID":"300653326696613"},"dummyElem":{"__m":"__elem_fc9f538f_0_j"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["UnauthenticatedUFI.react","__elem_fc9f538f_0_k","__inst_8a751efa_0_4"],[{"constructor":{"__m":"UnauthenticatedUFI.react"},"concurrent_UNSTABLE":false,"props":{"bigPipeContext":{"__bigPipeContext":1},"defaultActorID":"","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"hideUntilVisibleOrDD":false,"isCommentsCSSCloakingEnabled":false,"queryVariables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6NDczMTE3ODMzNjA2MjI0","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661869580574964","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"storyRenderLocation":"homepage_stream","streamLastViewTime":null,"usePreloadedQueryRenderer":true},"dummyElem":{"__m":"__elem_fc9f538f_0_k"},"acrossTransitions":false,"clobberSiblings":false,"preloader":{"__m":"__inst_8a751efa_0_4"},"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["UnauthenticatedUFI.react","__elem_fc9f538f_0_l","__inst_8a751efa_0_5"],[{"constructor":{"__m":"UnauthenticatedUFI.react"},"concurrent_UNSTABLE":false,"props":{"bigPipeContext":{"__bigPipeContext":1},"defaultActorID":"","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"hideUntilVisibleOrDD":false,"isCommentsCSSCloakingEnabled":false,"queryVariables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjgxMDczMjUxMjMyMjAzMw==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661931933902062","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"storyRenderLocation":"homepage_stream","streamLastViewTime":null,"usePreloadedQueryRenderer":true},"dummyElem":{"__m":"__elem_fc9f538f_0_l"},"acrossTransitions":false,"clobberSiblings":false,"preloader":{"__m":"__inst_8a751efa_0_5"},"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["UnauthenticatedUFI.react","__elem_fc9f538f_0_m","__inst_8a751efa_0_6"],[{"constructor":{"__m":"UnauthenticatedUFI.react"},"concurrent_UNSTABLE":false,"props":{"bigPipeContext":{"__bigPipeContext":1},"defaultActorID":"","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"hideUntilVisibleOrDD":false,"isCommentsCSSCloakingEnabled":false,"queryVariables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjY2MTMzOTU0MDYyNzk2OA==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661339540627968","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"storyRenderLocation":"homepage_stream","streamLastViewTime":null,"usePreloadedQueryRenderer":true},"dummyElem":{"__m":"__elem_fc9f538f_0_m"},"acrossTransitions":false,"clobberSiblings":false,"preloader":{"__m":"__inst_8a751efa_0_6"},"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["VideoDashPrefetchCache","loadVideo",[],[{"videoID":2810732512322033,"manifest":[],"video":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82487619_589767371864997_1026424272379183104_n.mp4?_nc_cat=100&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=2ldiV4EolrUAQmqcQ4kQbk328vJIUvzjaDdEr1cjUJ6h0TgJ31OvupK5Q&_nc_ht=video-cdg2-1.xx&oh=5122656ef89f5eb83a0015d65ae25f78&oe=5E9CFA25","start":0,"end":969,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82487619_589767371864997_1026424272379183104_n.mp4?_nc_cat=100&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=2ldiV4EolrUAQmqcQ4kQbk328vJIUvzjaDdEr1cjUJ6h0TgJ31OvupK5Q&_nc_ht=video-cdg2-1.xx&oh=5122656ef89f5eb83a0015d65ae25f78&oe=5E9CFA25","start":970,"end":1301,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82487619_589767371864997_1026424272379183104_n.mp4?_nc_cat=100&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=2ldiV4EolrUAQmqcQ4kQbk328vJIUvzjaDdEr1cjUJ6h0TgJ31OvupK5Q&_nc_ht=video-cdg2-1.xx&oh=5122656ef89f5eb83a0015d65ae25f78&oe=5E9CFA25","start":1302,"end":131693,"segment_type":null,"mime_codec":null,"representation_id":null}],"audio":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82708907_707024066490225_6371190633331163136_n.mp4?_nc_cat=111&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=CbtrEbABOqwAQl-8t2WJebw4zId34chVIB_DpfrennhL33UQtC6pYNvow&_nc_ht=video-cdg2-1.xx&oh=8c1a709563310445fc805aa18634fe7f&oe=5E173F0A","start":0,"end":931,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82708907_707024066490225_6371190633331163136_n.mp4?_nc_cat=111&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=CbtrEbABOqwAQl-8t2WJebw4zId34chVIB_DpfrennhL33UQtC6pYNvow&_nc_ht=video-cdg2-1.xx&oh=8c1a709563310445fc805aa18634fe7f&oe=5E173F0A","start":932,"end":1263,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82708907_707024066490225_6371190633331163136_n.mp4?_nc_cat=111&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=CbtrEbABOqwAQl-8t2WJebw4zId34chVIB_DpfrennhL33UQtC6pYNvow&_nc_ht=video-cdg2-1.xx&oh=8c1a709563310445fc805aa18634fe7f&oe=5E173F0A","start":1264,"end":17670,"segment_type":null,"mime_codec":null,"representation_id":null}]},false,0.9]],["__inst_57d19858_0_0"],["LitestandShareAttachment","init",["__elem_a588f507_0_w"],[{"__m":"__elem_a588f507_0_w"}]],["LitestandShareAttachment","init",["__elem_a588f507_0_x"],[{"__m":"__elem_a588f507_0_x"}]],["VideoFeedRegister","registerVideoUnit",["__markup_072b8e64_0_2","HTML","__elem_a588f507_0_y","__elem_a648e52c_0_2","__elem_a588f507_0_z","__inst_a648e52c_0_2"],[{"fallback_link":{"__m":"__markup_072b8e64_0_2"},"root_element":{"__m":"__elem_a588f507_0_y"},"video_element":{"__m":"__elem_a648e52c_0_2"},"video_container":{"__m":"__elem_a588f507_0_z"}},{"controller":{"__m":"__inst_a648e52c_0_2"},"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","startsMuted":false,"flash_id":"id_5e16fafbd4f965582023266","viewport_autoplay":false,"video_ids":["473117833606224"],"channelVersion":null,"abort_loading_blocked":false,"isLiveStreaming":false,"videoChannelCaller":"channel_view_from_page_timeline","autoPlayWithChannelViewOrSnowlift":false,"wnsEnabled":false,"isGamingVideo":false}]],["VideosRenderingInstrumentation","storeRenderTime",["__elem_a648e52c_0_2"],[{"__m":"__elem_a648e52c_0_2"}]],["__inst_a648e52c_0_2"],["__inst_6d29ee41_0_2"],["__inst_2223e126_0_2"],["__inst_a176866d_0_2"],["VideoDisplayTimePlayButton","register",["__elem_8c33f2cf_0_2","__elem_492d06b7_0_3"],[{"__m":"__elem_8c33f2cf_0_2"},{"__m":"__elem_492d06b7_0_3"}]],["__inst_8c33f2cf_0_2"],["Focus","relocate",["__elem_8937e029_0_2","__elem_2afd4650_0_2"],[{"__m":"__elem_8937e029_0_2"},{"__m":"__elem_2afd4650_0_2"}]],["__inst_492d06b7_0_2"],["ReactRenderer","constructAndRenderComponent",["PlayerKeyboardControls.react","__inst_a648e52c_0_2","__elem_444213d2_0_2"],[{"__m":"PlayerKeyboardControls.react"},{"controller":{"__m":"__inst_a648e52c_0_2"},"isLiveRewindEnabled":false,"isLiveStreaming":false},{"__m":"__elem_444213d2_0_2"}]],["ReactRenderer","constructAndRenderComponent",["VideoVODIndicator.react","__inst_a648e52c_0_2","__elem_a588f507_0_12"],[{"__m":"VideoVODIndicator.react"},{"renderLocation":"videoNewsFeedUnit","vpc":{"__m":"__inst_a648e52c_0_2"}},{"__m":"__elem_a588f507_0_12"}]],["__inst_21a8c1d4_0_2"],["__inst_c5b6bd12_0_2"],["__inst_dbb8a0b1_0_2"],["__inst_c523de71_0_2"],["__inst_1516ab8a_0_2"],["__inst_74f26af1_0_2"],["__inst_9f6501f1_0_2"],["__inst_8a4b6a17_0_2"],["__inst_96dc3ae7_0_2"],["__inst_e698bc89_0_2"],["__inst_70689822_0_2"],["__inst_70dbca80_0_2"],["LitestandShareAttachment","init",["__elem_a588f507_0_14"],[{"__m":"__elem_a588f507_0_14"}]],["VideoFeedRegister","registerVideoUnit",["__markup_072b8e64_0_3","HTML","__elem_a588f507_0_15","__elem_a648e52c_0_3","__elem_a588f507_0_16","__inst_a648e52c_0_3"],[{"fallback_link":{"__m":"__markup_072b8e64_0_3"},"root_element":{"__m":"__elem_a588f507_0_15"},"video_element":{"__m":"__elem_a648e52c_0_3"},"video_container":{"__m":"__elem_a588f507_0_16"}},{"controller":{"__m":"__inst_a648e52c_0_3"},"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","startsMuted":false,"flash_id":"id_5e16fafba8a948203335293","viewport_autoplay":false,"video_ids":["2561909697364016"],"channelVersion":null,"abort_loading_blocked":false,"isLiveStreaming":false,"videoChannelCaller":"channel_view_from_page_timeline","autoPlayWithChannelViewOrSnowlift":false,"wnsEnabled":false,"isGamingVideo":false}]],["LitestandShareAttachment","init",["__elem_a588f507_0_17"],[{"__m":"__elem_a588f507_0_17"}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["ProfilePhotoPresenceGreenDot.react","__elem_fc9f538f_0_n"],[{"constructor":{"__m":"ProfilePhotoPresenceGreenDot.react"},"concurrent_UNSTABLE":false,"props":{"profileID":"565225540184937"},"dummyElem":{"__m":"__elem_fc9f538f_0_n"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["ProfilePhotoPresenceGreenDot.react","__elem_fc9f538f_0_o"],[{"constructor":{"__m":"ProfilePhotoPresenceGreenDot.react"},"concurrent_UNSTABLE":false,"props":{"profileID":"565225540184937"},"dummyElem":{"__m":"__elem_fc9f538f_0_o"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["LitestandShareAttachment","init",["__elem_a588f507_0_18"],[{"__m":"__elem_a588f507_0_18"}]],["VideoFeedRegister","registerVideoUnit",["__markup_072b8e64_0_4","HTML","__elem_a588f507_0_19","__elem_a648e52c_0_4","__elem_a588f507_0_1a","__inst_a648e52c_0_4"],[{"fallback_link":{"__m":"__markup_072b8e64_0_4"},"root_element":{"__m":"__elem_a588f507_0_19"},"video_element":{"__m":"__elem_a648e52c_0_4"},"video_container":{"__m":"__elem_a588f507_0_1a"}},{"controller":{"__m":"__inst_a648e52c_0_4"},"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","startsMuted":false,"flash_id":"id_5e16fafbdd7cd9e16176388","viewport_autoplay":false,"video_ids":["2525520257557521"],"channelVersion":null,"abort_loading_blocked":false,"isLiveStreaming":false,"videoChannelCaller":"channel_view_from_page_timeline","autoPlayWithChannelViewOrSnowlift":false,"wnsEnabled":false,"isGamingVideo":false}]],["VideosRenderingInstrumentation","storeRenderTime",["__elem_a648e52c_0_4"],[{"__m":"__elem_a648e52c_0_4"}]],["__inst_a648e52c_0_4"],["__inst_6d29ee41_0_3"],["__inst_2223e126_0_3"],["__inst_a176866d_0_3"],["VideoDisplayTimePlayButton","register",["__elem_8c33f2cf_0_3","__elem_492d06b7_0_4"],[{"__m":"__elem_8c33f2cf_0_3"},{"__m":"__elem_492d06b7_0_4"}]],["__inst_8c33f2cf_0_3"],["Focus","relocate",["__elem_8937e029_0_3","__elem_2afd4650_0_3"],[{"__m":"__elem_8937e029_0_3"},{"__m":"__elem_2afd4650_0_3"}]],["__inst_492d06b7_0_3"],["ReactRenderer","constructAndRenderComponent",["PlayerKeyboardControls.react","__inst_a648e52c_0_4","__elem_444213d2_0_3"],[{"__m":"PlayerKeyboardControls.react"},{"controller":{"__m":"__inst_a648e52c_0_4"},"isLiveRewindEnabled":false,"isLiveStreaming":false},{"__m":"__elem_444213d2_0_3"}]],["ReactRenderer","constructAndRenderComponent",["VideoVODIndicator.react","__inst_a648e52c_0_4","__elem_a588f507_0_1d"],[{"__m":"VideoVODIndicator.react"},{"renderLocation":"videoNewsFeedUnit","vpc":{"__m":"__inst_a648e52c_0_4"}},{"__m":"__elem_a588f507_0_1d"}]],["__inst_21a8c1d4_0_3"],["__inst_c5b6bd12_0_3"],["__inst_dbb8a0b1_0_3"],["__inst_c523de71_0_3"],["__inst_1516ab8a_0_3"],["__inst_74f26af1_0_3"],["__inst_9f6501f1_0_3"],["__inst_8a4b6a17_0_3"],["__inst_96dc3ae7_0_3"],["__inst_e698bc89_0_3"],["__inst_70689822_0_3"],["__inst_70dbca80_0_3"],["LitestandShareAttachment","init",["__elem_a588f507_0_1f"],[{"__m":"__elem_a588f507_0_1f"}]],["VideoDashPrefetchCache","loadVideo",[],[{"videoID":575551206614901,"manifest":[],"video":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82629226_2552505031690462_3647605653070938112_n.mp4?_nc_cat=100&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=MNpgnNFvq3gAQlsm9N9a4-muecELhZZHnhjPg-alxKgWOVd1WqniEakpQ&_nc_ht=video-cdg2-1.xx&oh=e6d9273d793eb7e7b799b9e5e30b524d&oe=5E9CCF35","start":0,"end":969,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82629226_2552505031690462_3647605653070938112_n.mp4?_nc_cat=100&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=MNpgnNFvq3gAQlsm9N9a4-muecELhZZHnhjPg-alxKgWOVd1WqniEakpQ&_nc_ht=video-cdg2-1.xx&oh=e6d9273d793eb7e7b799b9e5e30b524d&oe=5E9CCF35","start":970,"end":1289,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82629226_2552505031690462_3647605653070938112_n.mp4?_nc_cat=100&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=MNpgnNFvq3gAQlsm9N9a4-muecELhZZHnhjPg-alxKgWOVd1WqniEakpQ&_nc_ht=video-cdg2-1.xx&oh=e6d9273d793eb7e7b799b9e5e30b524d&oe=5E9CCF35","start":1290,"end":336398,"segment_type":null,"mime_codec":null,"representation_id":null}],"audio":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82881266_1000337823673485_1004594010175569920_n.mp4?_nc_cat=103&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=E_335geXdZcAQkW2vQbvI2Eo-G8cmY6VYA_yIVq72i20xrJp-lKERTs1A&_nc_ht=video-cdg2-1.xx&oh=17aaf0091313524b7100fcd1fdb49b2a&oe=5E1724E5","start":0,"end":931,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82881266_1000337823673485_1004594010175569920_n.mp4?_nc_cat=103&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=E_335geXdZcAQkW2vQbvI2Eo-G8cmY6VYA_yIVq72i20xrJp-lKERTs1A&_nc_ht=video-cdg2-1.xx&oh=17aaf0091313524b7100fcd1fdb49b2a&oe=5E1724E5","start":932,"end":1263,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82881266_1000337823673485_1004594010175569920_n.mp4?_nc_cat=103&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=E_335geXdZcAQkW2vQbvI2Eo-G8cmY6VYA_yIVq72i20xrJp-lKERTs1A&_nc_ht=video-cdg2-1.xx&oh=17aaf0091313524b7100fcd1fdb49b2a&oe=5E1724E5","start":1264,"end":17807,"segment_type":null,"mime_codec":null,"representation_id":null}]},false,0.9]],["LitestandShareAttachment","init",["__elem_a588f507_0_1g"],[{"__m":"__elem_a588f507_0_1g"}]],["__inst_57d19858_0_1"],["VideoFeedRegister","registerVideoUnit",["__markup_072b8e64_0_5","HTML","__elem_a588f507_0_1h","__elem_a648e52c_0_5","__elem_a588f507_0_1i","__inst_a648e52c_0_5"],[{"fallback_link":{"__m":"__markup_072b8e64_0_5"},"root_element":{"__m":"__elem_a588f507_0_1h"},"video_element":{"__m":"__elem_a648e52c_0_5"},"video_container":{"__m":"__elem_a588f507_0_1i"}},{"controller":{"__m":"__inst_a648e52c_0_5"},"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","startsMuted":false,"flash_id":"id_5e16fafbe02d72d82026211","viewport_autoplay":false,"video_ids":["2658816227487174"],"channelVersion":null,"abort_loading_blocked":false,"isLiveStreaming":false,"videoChannelCaller":"channel_view_from_page_timeline","autoPlayWithChannelViewOrSnowlift":false,"wnsEnabled":false,"isGamingVideo":false}]],["VideosRenderingInstrumentation","storeRenderTime",["__elem_a648e52c_0_5"],[{"__m":"__elem_a648e52c_0_5"}]],["__inst_a648e52c_0_5"],["__inst_6d29ee41_0_4"],["__inst_2223e126_0_4"],["__inst_a176866d_0_4"],["VideoDisplayTimePlayButton","register",["__elem_8c33f2cf_0_4","__elem_492d06b7_0_5"],[{"__m":"__elem_8c33f2cf_0_4"},{"__m":"__elem_492d06b7_0_5"}]],["__inst_8c33f2cf_0_4"],["Focus","relocate",["__elem_8937e029_0_4","__elem_2afd4650_0_4"],[{"__m":"__elem_8937e029_0_4"},{"__m":"__elem_2afd4650_0_4"}]],["__inst_492d06b7_0_4"],["ReactRenderer","constructAndRenderComponent",["PlayerKeyboardControls.react","__inst_a648e52c_0_5","__elem_444213d2_0_4"],[{"__m":"PlayerKeyboardControls.react"},{"controller":{"__m":"__inst_a648e52c_0_5"},"isLiveRewindEnabled":false,"isLiveStreaming":false},{"__m":"__elem_444213d2_0_4"}]],["ReactRenderer","constructAndRenderComponent",["VideoVODIndicator.react","__inst_a648e52c_0_5","__elem_a588f507_0_1l"],[{"__m":"VideoVODIndicator.react"},{"renderLocation":"videoNewsFeedUnit","vpc":{"__m":"__inst_a648e52c_0_5"}},{"__m":"__elem_a588f507_0_1l"}]],["__inst_21a8c1d4_0_4"],["__inst_c5b6bd12_0_4"],["__inst_dbb8a0b1_0_4"],["__inst_c523de71_0_4"],["__inst_1516ab8a_0_4"],["__inst_74f26af1_0_4"],["__inst_9f6501f1_0_4"],["__inst_96dc3ae7_0_4"],["__inst_e698bc89_0_4"],["__inst_70689822_0_4"],["VideoFeedRegister","registerVideoUnit",["__markup_072b8e64_0_6","HTML","__elem_a588f507_0_1n","__elem_a648e52c_0_6","__elem_a588f507_0_1o","__inst_a648e52c_0_6"],[{"fallback_link":{"__m":"__markup_072b8e64_0_6"},"root_element":{"__m":"__elem_a588f507_0_1n"},"video_element":{"__m":"__elem_a648e52c_0_6"},"video_container":{"__m":"__elem_a588f507_0_1o"}},{"controller":{"__m":"__inst_a648e52c_0_6"},"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","startsMuted":false,"flash_id":"id_5e16fafbe320b9486959082","viewport_autoplay":false,"video_ids":["603020973807861"],"channelVersion":null,"abort_loading_blocked":false,"isLiveStreaming":false,"videoChannelCaller":"channel_view_from_page_timeline","autoPlayWithChannelViewOrSnowlift":false,"wnsEnabled":false,"isGamingVideo":false}]],["__inst_70dbca80_0_4"],["VideosRenderingInstrumentation","storeRenderTime",["__elem_a648e52c_0_6"],[{"__m":"__elem_a648e52c_0_6"}]],["__inst_a648e52c_0_6"],["__inst_6d29ee41_0_5"],["__inst_2223e126_0_5"],["__inst_a176866d_0_5"],["VideoDisplayTimePlayButton","register",["__elem_8c33f2cf_0_5","__elem_492d06b7_0_6"],[{"__m":"__elem_8c33f2cf_0_5"},{"__m":"__elem_492d06b7_0_6"}]],["__inst_8c33f2cf_0_5"],["Focus","relocate",["__elem_8937e029_0_5","__elem_2afd4650_0_5"],[{"__m":"__elem_8937e029_0_5"},{"__m":"__elem_2afd4650_0_5"}]],["__inst_492d06b7_0_5"],["ReactRenderer","constructAndRenderComponent",["PlayerKeyboardControls.react","__inst_a648e52c_0_6","__elem_444213d2_0_5"],[{"__m":"PlayerKeyboardControls.react"},{"controller":{"__m":"__inst_a648e52c_0_6"},"isLiveRewindEnabled":false,"isLiveStreaming":false},{"__m":"__elem_444213d2_0_5"}]],["ReactRenderer","constructAndRenderComponent",["VideoVODIndicator.react","__inst_a648e52c_0_6","__elem_a588f507_0_1r"],[{"__m":"VideoVODIndicator.react"},{"renderLocation":"videoNewsFeedUnit","vpc":{"__m":"__inst_a648e52c_0_6"}},{"__m":"__elem_a588f507_0_1r"}]],["__inst_21a8c1d4_0_5"],["__inst_866f970e_0_0"],["__inst_c5b6bd12_0_5"],["__inst_dbb8a0b1_0_5"],["__inst_c523de71_0_5"],["__inst_1516ab8a_0_5"],["__inst_74f26af1_0_5"],["__inst_9f6501f1_0_5"],["__inst_8a4b6a17_0_4"],["__inst_96dc3ae7_0_5"],["__inst_e698bc89_0_5"],["__inst_70689822_0_5"],["LitestandShareAttachment","init",["__elem_a588f507_0_1t"],[{"__m":"__elem_a588f507_0_1t"}]],["__inst_70dbca80_0_5"],["VideosRenderingInstrumentation","storeRenderTime",["__elem_a648e52c_0_3"],[{"__m":"__elem_a648e52c_0_3"}]],["__inst_a648e52c_0_3"],["__inst_6d29ee41_0_6"],["__inst_2223e126_0_6"],["__inst_a176866d_0_6"],["VideoDisplayTimePlayButton","register",["__elem_8c33f2cf_0_6","__elem_492d06b7_0_1"],[{"__m":"__elem_8c33f2cf_0_6"},{"__m":"__elem_492d06b7_0_1"}]],["__inst_8c33f2cf_0_6"],["Focus","relocate",["__elem_8937e029_0_6","__elem_2afd4650_0_6"],[{"__m":"__elem_8937e029_0_6"},{"__m":"__elem_2afd4650_0_6"}]],["__inst_492d06b7_0_6"],["ReactRenderer","constructAndRenderComponent",["PlayerKeyboardControls.react","__inst_a648e52c_0_3","__elem_444213d2_0_6"],[{"__m":"PlayerKeyboardControls.react"},{"controller":{"__m":"__inst_a648e52c_0_3"},"isLiveRewindEnabled":false,"isLiveStreaming":false},{"__m":"__elem_444213d2_0_6"}]],["ReactRenderer","constructAndRenderComponent",["VideoVODIndicator.react","__inst_a648e52c_0_3","__elem_a588f507_0_1w"],[{"__m":"VideoVODIndicator.react"},{"renderLocation":"videoNewsFeedUnit","vpc":{"__m":"__inst_a648e52c_0_3"}},{"__m":"__elem_a588f507_0_1w"}]],["__inst_21a8c1d4_0_6"],["__inst_c5b6bd12_0_6"],["__inst_dbb8a0b1_0_6"],["__inst_c523de71_0_6"],["__inst_1516ab8a_0_6"],["__inst_74f26af1_0_6"],["__inst_9f6501f1_0_6"],["__inst_8a4b6a17_0_5"],["__inst_96dc3ae7_0_6"],["__inst_e698bc89_0_6"],["__inst_70689822_0_6"],["VideoDashPrefetchCache","loadVideo",[],[{"videoID":473117833606224,"manifest":[],"video":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82497891_592563194875578_865677124097277952_n.mp4?_nc_cat=111&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=JIl1zI45ycoAQmR-cshyv1v97OY8HYty0L0Ipw7J62Z9zdzNF7ZNUreOg&_nc_ht=video-cdg2-1.xx&oh=8e023c83902f274c96b1470211d4ad58&oe=5E9ED513","start":0,"end":969,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82497891_592563194875578_865677124097277952_n.mp4?_nc_cat=111&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=JIl1zI45ycoAQmR-cshyv1v97OY8HYty0L0Ipw7J62Z9zdzNF7ZNUreOg&_nc_ht=video-cdg2-1.xx&oh=8e023c83902f274c96b1470211d4ad58&oe=5E9ED513","start":970,"end":1325,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82497891_592563194875578_865677124097277952_n.mp4?_nc_cat=111&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=JIl1zI45ycoAQmR-cshyv1v97OY8HYty0L0Ipw7J62Z9zdzNF7ZNUreOg&_nc_ht=video-cdg2-1.xx&oh=8e023c83902f274c96b1470211d4ad58&oe=5E9ED513","start":1326,"end":205212,"segment_type":null,"mime_codec":null,"representation_id":null}],"audio":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82483889_2247759945516684_815876269630554112_n.mp4?_nc_cat=103&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=UefHN_Vw4RAAQnBuQIsdbHJ5nvx4bqFP1lg9tvJjcld_Wl-BtbBSAJArg&_nc_ht=video-cdg2-1.xx&oh=1387fb570db09843a3772cf87ed3cd79&oe=5E172B0A","start":0,"end":931,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82483889_2247759945516684_815876269630554112_n.mp4?_nc_cat=103&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=UefHN_Vw4RAAQnBuQIsdbHJ5nvx4bqFP1lg9tvJjcld_Wl-BtbBSAJArg&_nc_ht=video-cdg2-1.xx&oh=1387fb570db09843a3772cf87ed3cd79&oe=5E172B0A","start":932,"end":1299,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82483889_2247759945516684_815876269630554112_n.mp4?_nc_cat=103&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=UefHN_Vw4RAAQnBuQIsdbHJ5nvx4bqFP1lg9tvJjcld_Wl-BtbBSAJArg&_nc_ht=video-cdg2-1.xx&oh=1387fb570db09843a3772cf87ed3cd79&oe=5E172B0A","start":1300,"end":17743,"segment_type":null,"mime_codec":null,"representation_id":null}]},false,0.9]],["VideoFeedRegister","registerVideoUnit",["__markup_072b8e64_0_7","HTML","__elem_a588f507_0_1y","__elem_a648e52c_0_7","__elem_a588f507_0_1z","__inst_a648e52c_0_7"],[{"fallback_link":{"__m":"__markup_072b8e64_0_7"},"root_element":{"__m":"__elem_a588f507_0_1y"},"video_element":{"__m":"__elem_a648e52c_0_7"},"video_container":{"__m":"__elem_a588f507_0_1z"}},{"controller":{"__m":"__inst_a648e52c_0_7"},"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","startsMuted":false,"flash_id":"id_5e16fafbea9551236783487","viewport_autoplay":false,"video_ids":["764719224037291"],"channelVersion":null,"abort_loading_blocked":false,"isLiveStreaming":false,"videoChannelCaller":"channel_view_from_page_timeline","autoPlayWithChannelViewOrSnowlift":false,"wnsEnabled":false,"isGamingVideo":false}]],["VideosRenderingInstrumentation","storeRenderTime",["__elem_a648e52c_0_7"],[{"__m":"__elem_a648e52c_0_7"}]],["__inst_a648e52c_0_7"],["__inst_6d29ee41_0_7"],["__inst_2223e126_0_7"],["__inst_a176866d_0_7"],["VideoDisplayTimePlayButton","register",["__elem_8c33f2cf_0_7","__elem_492d06b7_0_7"],[{"__m":"__elem_8c33f2cf_0_7"},{"__m":"__elem_492d06b7_0_7"}]],["__inst_8c33f2cf_0_7"],["Focus","relocate",["__elem_8937e029_0_7","__elem_2afd4650_0_7"],[{"__m":"__elem_8937e029_0_7"},{"__m":"__elem_2afd4650_0_7"}]],["__inst_492d06b7_0_7"],["ReactRenderer","constructAndRenderComponent",["PlayerKeyboardControls.react","__inst_a648e52c_0_7","__elem_444213d2_0_7"],[{"__m":"PlayerKeyboardControls.react"},{"controller":{"__m":"__inst_a648e52c_0_7"},"isLiveRewindEnabled":false,"isLiveStreaming":false},{"__m":"__elem_444213d2_0_7"}]],["ReactRenderer","constructAndRenderComponent",["VideoVODIndicator.react","__inst_a648e52c_0_7","__elem_a588f507_0_22"],[{"__m":"VideoVODIndicator.react"},{"renderLocation":"videoNewsFeedUnit","vpc":{"__m":"__inst_a648e52c_0_7"}},{"__m":"__elem_a588f507_0_22"}]],["__inst_21a8c1d4_0_7"],["__inst_c5b6bd12_0_7"],["__inst_dbb8a0b1_0_7"],["__inst_c523de71_0_7"],["__inst_1516ab8a_0_7"],["__inst_74f26af1_0_7"],["__inst_9f6501f1_0_7"],["__inst_96dc3ae7_0_7"],["__inst_e698bc89_0_7"],["__inst_70689822_0_7"],["__inst_70dbca80_0_6"],["VideoDashPrefetchCache","loadVideo",[],[{"videoID":2525520257557521,"manifest":[],"video":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82765864_1233083340359892_6263524234241245184_n.mp4?_nc_cat=111&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=RrXq51kyeSQAQk8w_C4ds44vt0WDnY5PBKdA7WpNb8b7JQ7fR9257X3Aw&_nc_ht=video-cdg2-1.xx&oh=12ede34a0c0a3e0425aeec8ad69c86a2&oe=5EA5796E","start":0,"end":967,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82765864_1233083340359892_6263524234241245184_n.mp4?_nc_cat=111&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=RrXq51kyeSQAQk8w_C4ds44vt0WDnY5PBKdA7WpNb8b7JQ7fR9257X3Aw&_nc_ht=video-cdg2-1.xx&oh=12ede34a0c0a3e0425aeec8ad69c86a2&oe=5EA5796E","start":968,"end":1215,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82765864_1233083340359892_6263524234241245184_n.mp4?_nc_cat=111&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=RrXq51kyeSQAQk8w_C4ds44vt0WDnY5PBKdA7WpNb8b7JQ7fR9257X3Aw&_nc_ht=video-cdg2-1.xx&oh=12ede34a0c0a3e0425aeec8ad69c86a2&oe=5EA5796E","start":1216,"end":69355,"segment_type":null,"mime_codec":null,"representation_id":null}],"audio":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82530108_1516216391859560_5426192395353980928_n.mp4?_nc_cat=108&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=V-jRtHKFn7EAQkcJLNuw0pFkE64yW0HR22adPop30bV7jmDI8Uj453g5A&_nc_ht=video-cdg2-1.xx&oh=b956c4aa8d23ecf094bea1e42f720636&oe=5E172471","start":0,"end":931,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82530108_1516216391859560_5426192395353980928_n.mp4?_nc_cat=108&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=V-jRtHKFn7EAQkcJLNuw0pFkE64yW0HR22adPop30bV7jmDI8Uj453g5A&_nc_ht=video-cdg2-1.xx&oh=b956c4aa8d23ecf094bea1e42f720636&oe=5E172471","start":932,"end":1179,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82530108_1516216391859560_5426192395353980928_n.mp4?_nc_cat=108&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=V-jRtHKFn7EAQkcJLNuw0pFkE64yW0HR22adPop30bV7jmDI8Uj453g5A&_nc_ht=video-cdg2-1.xx&oh=b956c4aa8d23ecf094bea1e42f720636&oe=5E172471","start":1180,"end":17556,"segment_type":null,"mime_codec":null,"representation_id":null}]},false,0.9]],["VideoFeedRegister","registerVideoUnit",["__markup_072b8e64_0_8","HTML","__elem_a588f507_0_24","__elem_a648e52c_0_8","__elem_a588f507_0_25","__inst_a648e52c_0_8"],[{"fallback_link":{"__m":"__markup_072b8e64_0_8"},"root_element":{"__m":"__elem_a588f507_0_24"},"video_element":{"__m":"__elem_a648e52c_0_8"},"video_container":{"__m":"__elem_a588f507_0_25"}},{"controller":{"__m":"__inst_a648e52c_0_8"},"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","startsMuted":false,"flash_id":"id_5e16fafbef3390752783287","viewport_autoplay":false,"video_ids":["2908242472529513"],"channelVersion":null,"abort_loading_blocked":false,"isLiveStreaming":false,"videoChannelCaller":"channel_view_from_page_timeline","autoPlayWithChannelViewOrSnowlift":false,"wnsEnabled":false,"isGamingVideo":false}]],["VideosRenderingInstrumentation","storeRenderTime",["__elem_a648e52c_0_8"],[{"__m":"__elem_a648e52c_0_8"}]],["__inst_a648e52c_0_8"],["__inst_6d29ee41_0_8"],["__inst_2223e126_0_8"],["__inst_a176866d_0_8"],["VideoDisplayTimePlayButton","register",["__elem_8c33f2cf_0_8","__elem_492d06b7_0_8"],[{"__m":"__elem_8c33f2cf_0_8"},{"__m":"__elem_492d06b7_0_8"}]],["__inst_8c33f2cf_0_8"],["Focus","relocate",["__elem_8937e029_0_8","__elem_2afd4650_0_8"],[{"__m":"__elem_8937e029_0_8"},{"__m":"__elem_2afd4650_0_8"}]],["__inst_492d06b7_0_8"],["ReactRenderer","constructAndRenderComponent",["PlayerKeyboardControls.react","__inst_a648e52c_0_8","__elem_444213d2_0_8"],[{"__m":"PlayerKeyboardControls.react"},{"controller":{"__m":"__inst_a648e52c_0_8"},"isLiveRewindEnabled":false,"isLiveStreaming":false},{"__m":"__elem_444213d2_0_8"}]],["ReactRenderer","constructAndRenderComponent",["VideoVODIndicator.react","__inst_a648e52c_0_8","__elem_a588f507_0_28"],[{"__m":"VideoVODIndicator.react"},{"renderLocation":"videoNewsFeedUnit","vpc":{"__m":"__inst_a648e52c_0_8"}},{"__m":"__elem_a588f507_0_28"}]],["__inst_21a8c1d4_0_8"],["__inst_866f970e_0_1"],["__inst_c5b6bd12_0_8"],["__inst_dbb8a0b1_0_8"],["__inst_c523de71_0_8"],["__inst_1516ab8a_0_8"],["__inst_74f26af1_0_8"],["__inst_9f6501f1_0_8"],["__inst_8a4b6a17_0_6"],["__inst_96dc3ae7_0_8"],["__inst_e698bc89_0_8"],["__inst_70689822_0_8"],["__inst_57d19858_0_2"],["__inst_57d19858_0_3"],["__inst_70dbca80_0_7"],["VideoDashPrefetchCache","loadVideo",[],[{"videoID":603020973807861,"manifest":[],"video":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82299650_598153434331837_3350491454895030272_n.mp4?_nc_cat=111&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=B4Q7kgvnLUYAQn_ysSsOd30Bqo4-YIoBeo0aO0xNlCdi4SCGfzItIj-Fw&_nc_ht=video-cdg2-1.xx&oh=90659afd5340f245beb4283852d7941f&oe=5E961F8E","start":0,"end":967,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82299650_598153434331837_3350491454895030272_n.mp4?_nc_cat=111&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=B4Q7kgvnLUYAQn_ysSsOd30Bqo4-YIoBeo0aO0xNlCdi4SCGfzItIj-Fw&_nc_ht=video-cdg2-1.xx&oh=90659afd5340f245beb4283852d7941f&oe=5E961F8E","start":968,"end":1143,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82299650_598153434331837_3350491454895030272_n.mp4?_nc_cat=111&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=B4Q7kgvnLUYAQn_ysSsOd30Bqo4-YIoBeo0aO0xNlCdi4SCGfzItIj-Fw&_nc_ht=video-cdg2-1.xx&oh=90659afd5340f245beb4283852d7941f&oe=5E961F8E","start":1144,"end":93233,"segment_type":null,"mime_codec":null,"representation_id":null}],"audio":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82603503_488372051820435_1239566014467801088_n.mp4?_nc_cat=107&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=N1o6JRa8jKsAQmvEAd9C0qR5jUFjg4Wt5z8PaADsoQxIE7RWiARiiDYgA&_nc_ht=video-cdg2-1.xx&oh=840e07d8a9aef0d201a156b6da7e3295&oe=5E172DFE","start":0,"end":931,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82603503_488372051820435_1239566014467801088_n.mp4?_nc_cat=107&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=N1o6JRa8jKsAQmvEAd9C0qR5jUFjg4Wt5z8PaADsoQxIE7RWiARiiDYgA&_nc_ht=video-cdg2-1.xx&oh=840e07d8a9aef0d201a156b6da7e3295&oe=5E172DFE","start":932,"end":1119,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82603503_488372051820435_1239566014467801088_n.mp4?_nc_cat=107&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=N1o6JRa8jKsAQmvEAd9C0qR5jUFjg4Wt5z8PaADsoQxIE7RWiARiiDYgA&_nc_ht=video-cdg2-1.xx&oh=840e07d8a9aef0d201a156b6da7e3295&oe=5E172DFE","start":1120,"end":17475,"segment_type":null,"mime_codec":null,"representation_id":null}]},false,0.9]],["__inst_57d19858_0_4"],["VideoDashPrefetchCache","loadVideo",[],[{"videoID":2658816227487174,"manifest":[],"video":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/10000000_673305309741102_3016871074085208064_n.mp4?_nc_cat=102&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=zfqe36Ltp2kAQlbBblthsx8L7yCHnZ6KS-O9kl6yLJZ07kGQFpQHty_pA&_nc_ht=video-cdg2-1.xx&oh=bd338ff17638dfc1cb8bd5de1e3cec5a&oe=5EA7949A","start":0,"end":970,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/10000000_673305309741102_3016871074085208064_n.mp4?_nc_cat=102&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=zfqe36Ltp2kAQlbBblthsx8L7yCHnZ6KS-O9kl6yLJZ07kGQFpQHty_pA&_nc_ht=video-cdg2-1.xx&oh=bd338ff17638dfc1cb8bd5de1e3cec5a&oe=5EA7949A","start":971,"end":1410,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/10000000_673305309741102_3016871074085208064_n.mp4?_nc_cat=102&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=zfqe36Ltp2kAQlbBblthsx8L7yCHnZ6KS-O9kl6yLJZ07kGQFpQHty_pA&_nc_ht=video-cdg2-1.xx&oh=bd338ff17638dfc1cb8bd5de1e3cec5a&oe=5EA7949A","start":1411,"end":133472,"segment_type":null,"mime_codec":null,"representation_id":null}],"audio":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82660003_2681152788643496_1695633121157840896_n.mp4?_nc_cat=106&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=C2ufUM9r5u4AQnX5L-ss9Rl6Rgz1aFBdFthKxp2XOJwVvdKBLfTEWko7g&_nc_ht=video-cdg2-1.xx&oh=e700e3dc12b6f50689ad38eb61c2c717&oe=5E173000","start":0,"end":931,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82660003_2681152788643496_1695633121157840896_n.mp4?_nc_cat=106&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=C2ufUM9r5u4AQnX5L-ss9Rl6Rgz1aFBdFthKxp2XOJwVvdKBLfTEWko7g&_nc_ht=video-cdg2-1.xx&oh=e700e3dc12b6f50689ad38eb61c2c717&oe=5E173000","start":932,"end":1371,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82660003_2681152788643496_1695633121157840896_n.mp4?_nc_cat=106&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=C2ufUM9r5u4AQnX5L-ss9Rl6Rgz1aFBdFthKxp2XOJwVvdKBLfTEWko7g&_nc_ht=video-cdg2-1.xx&oh=e700e3dc12b6f50689ad38eb61c2c717&oe=5E173000","start":1372,"end":17868,"segment_type":null,"mime_codec":null,"representation_id":null}]},false,0.9]],["__inst_57d19858_0_5"],["__inst_57d19858_0_6"],["VideoFeedRegister","registerVideoUnit",["__markup_072b8e64_0_9","HTML","__elem_a588f507_0_2a","__elem_a648e52c_0_9","__elem_a588f507_0_2b","__inst_a648e52c_0_9"],[{"fallback_link":{"__m":"__markup_072b8e64_0_9"},"root_element":{"__m":"__elem_a588f507_0_2a"},"video_element":{"__m":"__elem_a648e52c_0_9"},"video_container":{"__m":"__elem_a588f507_0_2b"}},{"controller":{"__m":"__inst_a648e52c_0_9"},"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","startsMuted":false,"flash_id":"id_5e16fafc04d071d51046661","viewport_autoplay":false,"video_ids":["1054162518271150"],"channelVersion":null,"abort_loading_blocked":false,"isLiveStreaming":false,"videoChannelCaller":"channel_view_from_page_timeline","autoPlayWithChannelViewOrSnowlift":false,"wnsEnabled":false,"isGamingVideo":false}]],["VideosRenderingInstrumentation","storeRenderTime",["__elem_a648e52c_0_9"],[{"__m":"__elem_a648e52c_0_9"}]],["__inst_a648e52c_0_9"],["__inst_6d29ee41_0_9"],["__inst_2223e126_0_9"],["__inst_a176866d_0_9"],["VideoDisplayTimePlayButton","register",["__elem_8c33f2cf_0_9","__elem_492d06b7_0_9"],[{"__m":"__elem_8c33f2cf_0_9"},{"__m":"__elem_492d06b7_0_9"}]],["__inst_8c33f2cf_0_9"],["Focus","relocate",["__elem_8937e029_0_9","__elem_2afd4650_0_9"],[{"__m":"__elem_8937e029_0_9"},{"__m":"__elem_2afd4650_0_9"}]],["__inst_492d06b7_0_9"],["ReactRenderer","constructAndRenderComponent",["PlayerKeyboardControls.react","__inst_a648e52c_0_9","__elem_444213d2_0_9"],[{"__m":"PlayerKeyboardControls.react"},{"controller":{"__m":"__inst_a648e52c_0_9"},"isLiveRewindEnabled":false,"isLiveStreaming":false},{"__m":"__elem_444213d2_0_9"}]],["ReactRenderer","constructAndRenderComponent",["VideoVODIndicator.react","__inst_a648e52c_0_9","__elem_a588f507_0_2e"],[{"__m":"VideoVODIndicator.react"},{"renderLocation":"videoNewsFeedUnit","vpc":{"__m":"__inst_a648e52c_0_9"}},{"__m":"__elem_a588f507_0_2e"}]],["__inst_21a8c1d4_0_9"],["__inst_c5b6bd12_0_9"],["__inst_dbb8a0b1_0_9"],["__inst_c523de71_0_9"],["__inst_1516ab8a_0_9"],["__inst_74f26af1_0_9"],["__inst_9f6501f1_0_9"],["__inst_8a4b6a17_0_7"],["__inst_96dc3ae7_0_9"],["__inst_e698bc89_0_9"],["__inst_70689822_0_9"],["VideoDashPrefetchCache","loadVideo",[],[{"videoID":764719224037291,"manifest":[],"video":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82854866_770502360100726_6529113681702158336_n.mp4?_nc_cat=102&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=U9u-Pw541bMAQmFnQbMkuk970KzF5A1rNoJyMFzcRwC-_v3g2wPWxESiA&_nc_ht=video-cdg2-1.xx&oh=fee473fb832abbf0ee1ccb525c356368&oe=5EAA6F6C","start":0,"end":1031,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82854866_770502360100726_6529113681702158336_n.mp4?_nc_cat=102&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=U9u-Pw541bMAQmFnQbMkuk970KzF5A1rNoJyMFzcRwC-_v3g2wPWxESiA&_nc_ht=video-cdg2-1.xx&oh=fee473fb832abbf0ee1ccb525c356368&oe=5EAA6F6C","start":1032,"end":1291,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82854866_770502360100726_6529113681702158336_n.mp4?_nc_cat=102&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=U9u-Pw541bMAQmFnQbMkuk970KzF5A1rNoJyMFzcRwC-_v3g2wPWxESiA&_nc_ht=video-cdg2-1.xx&oh=fee473fb832abbf0ee1ccb525c356368&oe=5EAA6F6C","start":1292,"end":164604,"segment_type":null,"mime_codec":null,"representation_id":null}],"audio":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82681592_982020948821309_898040273903288320_n.mp4?_nc_cat=103&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=JKOShyUJDkkAQnwaQlzF5gxfloUhTJEKRyKTa1kTlD4mLIZp5jgsMXYXQ&_nc_ht=video-cdg2-1.xx&oh=e0314fef7cd924cc1f0923377f06151b&oe=5E173E9E","start":0,"end":972,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82681592_982020948821309_898040273903288320_n.mp4?_nc_cat=103&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=JKOShyUJDkkAQnwaQlzF5gxfloUhTJEKRyKTa1kTlD4mLIZp5jgsMXYXQ&_nc_ht=video-cdg2-1.xx&oh=e0314fef7cd924cc1f0923377f06151b&oe=5E173E9E","start":973,"end":1244,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82681592_982020948821309_898040273903288320_n.mp4?_nc_cat=103&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=JKOShyUJDkkAQnwaQlzF5gxfloUhTJEKRyKTa1kTlD4mLIZp5jgsMXYXQ&_nc_ht=video-cdg2-1.xx&oh=e0314fef7cd924cc1f0923377f06151b&oe=5E173E9E","start":1245,"end":17532,"segment_type":null,"mime_codec":null,"representation_id":null}]},false,0.9]],["__inst_70dbca80_0_8"],["VideoDashPrefetchCache","loadVideo",[],[{"videoID":2908242472529513,"manifest":[],"video":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82567380_613666742510944_6408632092338421760_n.mp4?_nc_cat=102&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=NbYWMKGQPkQAQm1BVO8AUFJ8Eg7NuhCH_e5Nh6Pa3XNXfwXCS6Iz3M0lg&_nc_ht=video-cdg2-1.xx&oh=51faadc2a359f8cb7f0f659a22055824&oe=5EA17972","start":0,"end":966,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82567380_613666742510944_6408632092338421760_n.mp4?_nc_cat=102&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=NbYWMKGQPkQAQm1BVO8AUFJ8Eg7NuhCH_e5Nh6Pa3XNXfwXCS6Iz3M0lg&_nc_ht=video-cdg2-1.xx&oh=51faadc2a359f8cb7f0f659a22055824&oe=5EA17972","start":967,"end":1118,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82567380_613666742510944_6408632092338421760_n.mp4?_nc_cat=102&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=NbYWMKGQPkQAQm1BVO8AUFJ8Eg7NuhCH_e5Nh6Pa3XNXfwXCS6Iz3M0lg&_nc_ht=video-cdg2-1.xx&oh=51faadc2a359f8cb7f0f659a22055824&oe=5EA17972","start":1119,"end":85751,"segment_type":null,"mime_codec":null,"representation_id":null}],"audio":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82800400_1271591936369516_3707819428113547264_n.mp4?_nc_cat=105&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=gM5or0nSvK4AQkVI1nPbtNjTrC8tHFEvlnKpMUsVvnFZyv-y6M19SOIAA&_nc_ht=video-cdg2-1.xx&oh=4c23e627674b529169a007adabca6024&oe=5E172BB5","start":0,"end":930,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82800400_1271591936369516_3707819428113547264_n.mp4?_nc_cat=105&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=gM5or0nSvK4AQkVI1nPbtNjTrC8tHFEvlnKpMUsVvnFZyv-y6M19SOIAA&_nc_ht=video-cdg2-1.xx&oh=4c23e627674b529169a007adabca6024&oe=5E172BB5","start":931,"end":1094,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82800400_1271591936369516_3707819428113547264_n.mp4?_nc_cat=105&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=gM5or0nSvK4AQkVI1nPbtNjTrC8tHFEvlnKpMUsVvnFZyv-y6M19SOIAA&_nc_ht=video-cdg2-1.xx&oh=4c23e627674b529169a007adabca6024&oe=5E172BB5","start":1095,"end":17469,"segment_type":null,"mime_codec":null,"representation_id":null}]},false,0.9]],["__inst_57d19858_0_7"],["VideoDashPrefetchCache","loadVideo",[],[{"videoID":2561909697364016,"manifest":[],"video":[{"url":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t42.1790-29\/10000000_756488914861317_3968050222297706951_n.mp4?_nc_cat=1&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfbGl2ZV9tZF9mcmFnXzJfdmlkZW8ifQ\u00253D\u00253D&_nc_ohc=a_ArraNERvYAQl9LrBPV2TeyqZtpBf-RHWSH-C0y52iKRuqOX4jwNfv9w&_nc_ht=scontent-cdg2-1.xx&oh=2e17e435ce6ea2a5ab679040be7b0429&oe=5E1725C3","start":0,"end":911,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t42.1790-29\/10000000_756488914861317_3968050222297706951_n.mp4?_nc_cat=1&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfbGl2ZV9tZF9mcmFnXzJfdmlkZW8ifQ\u00253D\u00253D&_nc_ohc=a_ArraNERvYAQl9LrBPV2TeyqZtpBf-RHWSH-C0y52iKRuqOX4jwNfv9w&_nc_ht=scontent-cdg2-1.xx&oh=2e17e435ce6ea2a5ab679040be7b0429&oe=5E1725C3","start":912,"end":13939,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t42.1790-29\/10000000_756488914861317_3968050222297706951_n.mp4?_nc_cat=1&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfbGl2ZV9tZF9mcmFnXzJfdmlkZW8ifQ\u00253D\u00253D&_nc_ohc=a_ArraNERvYAQl9LrBPV2TeyqZtpBf-RHWSH-C0y52iKRuqOX4jwNfv9w&_nc_ht=scontent-cdg2-1.xx&oh=2e17e435ce6ea2a5ab679040be7b0429&oe=5E1725C3","start":13940,"end":34438,"segment_type":null,"mime_codec":null,"representation_id":null}],"audio":[{"url":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t42.1790-29\/10000000_478878679436973_6113774483082102791_n.mp4?_nc_cat=1&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfbGl2ZV9tZF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=AhtcEjUrYWkAQktxlryVx57QSEwN0HBIDm4OdEUKzU708YushtjHdzzew&_nc_ht=scontent-cdg2-1.xx&oh=3f968f964e3dcf5d1c9210b70bd5b968&oe=5E172DDD","start":0,"end":841,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t42.1790-29\/10000000_478878679436973_6113774483082102791_n.mp4?_nc_cat=1&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfbGl2ZV9tZF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=AhtcEjUrYWkAQktxlryVx57QSEwN0HBIDm4OdEUKzU708YushtjHdzzew&_nc_ht=scontent-cdg2-1.xx&oh=3f968f964e3dcf5d1c9210b70bd5b968&oe=5E172DDD","start":842,"end":13905,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t42.1790-29\/10000000_478878679436973_6113774483082102791_n.mp4?_nc_cat=1&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfbGl2ZV9tZF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=AhtcEjUrYWkAQktxlryVx57QSEwN0HBIDm4OdEUKzU708YushtjHdzzew&_nc_ht=scontent-cdg2-1.xx&oh=3f968f964e3dcf5d1c9210b70bd5b968&oe=5E172DDD","start":13906,"end":29891,"segment_type":null,"mime_codec":null,"representation_id":null}]},false,0.9]],["__inst_57d19858_0_8"],["VideoFeedRegister","registerVideoUnit",["__markup_072b8e64_0_a","HTML","__elem_a588f507_0_2g","__elem_a648e52c_0_a","__elem_a588f507_0_2h","__inst_a648e52c_0_a"],[{"fallback_link":{"__m":"__markup_072b8e64_0_a"},"root_element":{"__m":"__elem_a588f507_0_2g"},"video_element":{"__m":"__elem_a648e52c_0_a"},"video_container":{"__m":"__elem_a588f507_0_2h"}},{"controller":{"__m":"__inst_a648e52c_0_a"},"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","startsMuted":false,"flash_id":"id_5e16fafbe3d661895964954","viewport_autoplay":false,"video_ids":["781338735704182"],"channelVersion":null,"abort_loading_blocked":false,"isLiveStreaming":true,"videoChannelCaller":"channel_view_from_page_timeline","autoPlayWithChannelViewOrSnowlift":false,"wnsEnabled":false,"isGamingVideo":false}]],["VideosRenderingInstrumentation","storeRenderTime",["__elem_a648e52c_0_a"],[{"__m":"__elem_a648e52c_0_a"}]],["__inst_a648e52c_0_a"],["__inst_6d29ee41_0_a"],["__inst_2a05bc4a_0_0"],["__inst_0c6f9d09_0_0"],["__inst_2223e126_0_a"],["__inst_a176866d_0_a"],["VideoDisplayTimePlayButton","register",["__elem_8c33f2cf_0_a","__elem_492d06b7_0_a"],[{"__m":"__elem_8c33f2cf_0_a"},{"__m":"__elem_492d06b7_0_a"}]],["__inst_8c33f2cf_0_a"],["Focus","relocate",["__elem_8937e029_0_a","__elem_2afd4650_0_a"],[{"__m":"__elem_8937e029_0_a"},{"__m":"__elem_2afd4650_0_a"}]],["__inst_492d06b7_0_a"],["__inst_da303b47_0_0"],["ReactRenderer","constructAndRenderComponent",["PlayerKeyboardControls.react","__inst_a648e52c_0_a","__elem_444213d2_0_a"],[{"__m":"PlayerKeyboardControls.react"},{"controller":{"__m":"__inst_a648e52c_0_a"},"isLiveRewindEnabled":false,"isLiveStreaming":true},{"__m":"__elem_444213d2_0_a"}]],["__inst_21a8c1d4_0_a"],["__inst_c23c2f0c_0_0"],["__inst_c5b6bd12_0_a"],["__inst_dbb8a0b1_0_a"],["__inst_c523de71_0_a"],["__inst_1516ab8a_0_a"],["__inst_74f26af1_0_a"],["__inst_9f6501f1_0_a"],["__inst_96dc3ae7_0_a"],["__inst_076599bd_0_0"],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["LiveVideoIndicatorContainerServerCallable.react","__inst_a648e52c_0_a","__elem_fc9f538f_0_p"],[{"constructor":{"__m":"LiveVideoIndicatorContainerServerCallable.react"},"concurrent_UNSTABLE":false,"props":{"broadcastCreationTime":1578525385,"compact":false,"inline":true,"inBeeper":false,"isGamingVideo":false,"isAudio":false,"isBreakingNews":false,"isLive":true,"isPremiere":false,"isPreview":false,"isRehearsal":false,"showTimePop":true,"textOverride":null,"videoPlayerController":{"__m":"__inst_a648e52c_0_a"},"viewerCount":4},"dummyElem":{"__m":"__elem_fc9f538f_0_p"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["__inst_70dbca80_0_9"],["__inst_57d19858_0_9"],["VideoDashPrefetchCache","loadVideo",[],[{"videoID":1054162518271150,"manifest":[],"video":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82403651_468342253863787_4070612261884919808_n.mp4?_nc_cat=109&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=YbsHk2gF2KwAQmXyL0OGqI2jCaO9O_FXPoxPsGgEzI2U-RkCydodZBL0A&_nc_ht=video-cdg2-1.xx&oh=85d9a6752e1912af1ac5d6b62e929668&oe=5EA80850","start":0,"end":966,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82403651_468342253863787_4070612261884919808_n.mp4?_nc_cat=109&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=YbsHk2gF2KwAQmXyL0OGqI2jCaO9O_FXPoxPsGgEzI2U-RkCydodZBL0A&_nc_ht=video-cdg2-1.xx&oh=85d9a6752e1912af1ac5d6b62e929668&oe=5EA80850","start":967,"end":1202,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82403651_468342253863787_4070612261884919808_n.mp4?_nc_cat=109&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=YbsHk2gF2KwAQmXyL0OGqI2jCaO9O_FXPoxPsGgEzI2U-RkCydodZBL0A&_nc_ht=video-cdg2-1.xx&oh=85d9a6752e1912af1ac5d6b62e929668&oe=5EA80850","start":1203,"end":96401,"segment_type":null,"mime_codec":null,"representation_id":null}],"audio":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82566744_2492400064413845_3701963605277671424_n.mp4?_nc_cat=110&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=ofEa4QnzqzcAQnLLirSVMoE07RuEskN3BQay8EEVO6-QH3skvNMm8ZvMw&_nc_ht=video-cdg2-1.xx&oh=9fd853374c1dca562e2fbdee3de86640&oe=5E1727BA","start":0,"end":930,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82566744_2492400064413845_3701963605277671424_n.mp4?_nc_cat=110&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=ofEa4QnzqzcAQnLLirSVMoE07RuEskN3BQay8EEVO6-QH3skvNMm8ZvMw&_nc_ht=video-cdg2-1.xx&oh=9fd853374c1dca562e2fbdee3de86640&oe=5E1727BA","start":931,"end":1166,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82566744_2492400064413845_3701963605277671424_n.mp4?_nc_cat=110&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=ofEa4QnzqzcAQnLLirSVMoE07RuEskN3BQay8EEVO6-QH3skvNMm8ZvMw&_nc_ht=video-cdg2-1.xx&oh=9fd853374c1dca562e2fbdee3de86640&oe=5E1727BA","start":1167,"end":17553,"segment_type":null,"mime_codec":null,"representation_id":null}]},false,0.9]],["SLUtils","init",[],[{"cxononce":"i5k0l8jki8k3kajwibjtkbk1ihjmjpk7jqk1hvk8jkjwjxk7jqjxk7ihhvhtkwk3jwjxk0jwk1juk0lbibibkmiihvhtkehvi5jzl8jki8k3kajxi6jmjxjuihjmjpk7jqk1hvk8jkjwjxk7jqjxk7ihhvhtkwk3jwjxk0jwk1juk0lbibibkmiihvhvlbibibi9ijhvjrlbibibkmiihvjyjwlbibibi9iihvhtkeir"},[{"nonce":{"cxononce":"5i4c533v6348413q5h4a3m3p6g"},"className":{"cxononce":"40583k5s434a3w5v3t4b416b"}},{"nonce":{"cxononce":"guehfjerg3e8ehf2gteaezeqhc"},"className":{"cxononce":"q2plpxs5qeqnq0rvpzq0q7qu"}},{"nonce":{"cxononce":"r6p1pvprr3p8p1per5papipesc"},"className":{"cxononce":"9s94ac849za6ag87ah82ad7r"}}]]],["SLUtils","init",[],[{"cxononce":"unsyu6siuqsxt4suupsrt5szuzsgsnt1skszu9t6sisusvt1sksvt1uzu9ubtusxsusvsysuszsosyu5upuptguwu9ubt8u9unstu6siuqsxt4svuksgsvsouzsgsnt1skszu9t6sisusvt1sksvt1uzu9ubtusxsusvsysuszsosyu5upuptguwu9u9u5upupuruxu9slu5upuptguwu9sssuu5upupuruwu9ubt8v5"},[{"nonce":{"cxononce":"uxsjtkt0ucsnsut5uyslt9t6vr"},"className":{"cxononce":"pfqnozr7pcplpbr4p6pkperk"}},{"nonce":{"cxononce":"wkxvytyhw9y2xvycwny0y9ygxm"},"className":{"cxononce":"hmg9hhf9h2hbhkfvhjhkhreu"}},{"nonce":{"cxononce":"pfqsrmripar1qsr7pcr3rbr7ql"},"className":{"cxononce":"1b071n2z140x1j2w1i311m2g"}}]]],["__inst_57d19858_0_a"],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["ProfilePhotoPresenceGreenDot.react","__elem_fc9f538f_0_q"],[{"constructor":{"__m":"ProfilePhotoPresenceGreenDot.react"},"concurrent_UNSTABLE":false,"props":{"profileID":"300653326696613"},"dummyElem":{"__m":"__elem_fc9f538f_0_q"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["ProfilePhotoPresenceGreenDot.react","__elem_fc9f538f_0_r"],[{"constructor":{"__m":"ProfilePhotoPresenceGreenDot.react"},"concurrent_UNSTABLE":false,"props":{"profileID":"300653326696613"},"dummyElem":{"__m":"__elem_fc9f538f_0_r"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["LitestandShareAttachment","init",["__elem_a588f507_0_2s"],[{"__m":"__elem_a588f507_0_2s"}]],["LitestandShareAttachment","init",["__elem_a588f507_0_2t"],[{"__m":"__elem_a588f507_0_2t"}]],["SLUtils","init",[],[{"cxononce":"mroen6oummodo4oimlono5ofmfosoro9ooofn1o6ouoiojo9ooojo9mfn1n3niodoiojoeoiofokoen5mlmlnsmcn1n3o0n1mrohn6oummodo4ojmoosojokmfosoro9ooofn1o6ouoiojo9ooojo9mfn1n3niodoiojoeoiofokoen5mlmlnsmcn1n1n5mlmlmnmdn1opn5mlmlnsmcn1ogoin5mlmlmnmcn1n3o0m5"},[{"nonce":{"cxononce":"7a9oaf977v9k9d92799m8y9188"},"className":{"cxononce":"91a19h79929b9l7a9o9a908m"}},{"nonce":{"cxononce":"7s9ba19h79929b9k7v909p9g8m"},"className":{"cxononce":"jkkzjzinkck5jmhtjxjmjpj0"}},{"nonce":{"cxononce":"h9fuf0f4hcfnfufhhaflfdfhg3"},"className":{"cxononce":"gygahifah1h8hmf9hnf4hjet"}}]]],["SLUtils","init",[],[{"cxononce":"n8m1mtllntm2lvlhnulclum0nklnlom6lrm0neltlllhlgm6lrlgm6nknencmxm2lhlgm1lhm0lfm1mununumnnnnenclznen8limtllntm2lvlgnblnlglfnklnlom6lrm0neltlllhlgm6lrlgm6nknencmxm2lhlgm1lhm0lfm1mununumnnnnenemunununsnmnelqmununumnnnneljlhmunununsnnnenclzoa"},[{"nonce":{"cxononce":"4t6v64684w6r6y6l4u6p6h6m3n"},"className":{"cxononce":"646o5o4c675y5c4f5h5z654v"}},{"nonce":{"cxononce":"j7kkjmlaj2ktkkkzj4kvl2lbil"},"className":{"cxononce":"vkubvztrvgv9vmttvxvmvpt8"}},{"nonce":{"cxononce":"k5huisigjsi3huidk6i1i9idl7"},"className":{"cxononce":"4f533v6348413r603q653u6g"}}]]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["ProfilePhotoPresenceGreenDot.react","__elem_fc9f538f_0_s"],[{"constructor":{"__m":"ProfilePhotoPresenceGreenDot.react"},"concurrent_UNSTABLE":false,"props":{"profileID":"300653326696613"},"dummyElem":{"__m":"__elem_fc9f538f_0_s"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["UnauthenticatedUFI.react","__elem_fc9f538f_0_t","__inst_8a751efa_0_7"],[{"constructor":{"__m":"UnauthenticatedUFI.react"},"concurrent_UNSTABLE":false,"props":{"bigPipeContext":{"__bigPipeContext":1},"defaultActorID":"","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"hideUntilVisibleOrDD":false,"isCommentsCSSCloakingEnabled":false,"queryVariables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MTA1NDE2MjUxODI3MTE1MA==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661896813905574","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"storyRenderLocation":"homepage_stream","streamLastViewTime":null,"usePreloadedQueryRenderer":true},"dummyElem":{"__m":"__elem_fc9f538f_0_t"},"acrossTransitions":false,"clobberSiblings":false,"preloader":{"__m":"__inst_8a751efa_0_7"},"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["UnauthenticatedUFI.react","__elem_fc9f538f_0_u","__inst_8a751efa_0_8"],[{"constructor":{"__m":"UnauthenticatedUFI.react"},"concurrent_UNSTABLE":false,"props":{"bigPipeContext":{"__bigPipeContext":1},"defaultActorID":"","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"hideUntilVisibleOrDD":false,"isCommentsCSSCloakingEnabled":false,"queryVariables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjYwMDc2NDMyMzU0Mzc1MQ==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2659889537439635","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"storyRenderLocation":"homepage_stream","streamLastViewTime":null,"usePreloadedQueryRenderer":true},"dummyElem":{"__m":"__elem_fc9f538f_0_u"},"acrossTransitions":false,"clobberSiblings":false,"preloader":{"__m":"__inst_8a751efa_0_8"},"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["UnauthenticatedUFI.react","__elem_fc9f538f_0_v","__inst_8a751efa_0_9"],[{"constructor":{"__m":"UnauthenticatedUFI.react"},"concurrent_UNSTABLE":false,"props":{"bigPipeContext":{"__bigPipeContext":1},"defaultActorID":"","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"hideUntilVisibleOrDD":false,"isCommentsCSSCloakingEnabled":false,"queryVariables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjUyNTUyMDI1NzU1NzUyMQ==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661862420575680","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"storyRenderLocation":"homepage_stream","streamLastViewTime":null,"usePreloadedQueryRenderer":true},"dummyElem":{"__m":"__elem_fc9f538f_0_v"},"acrossTransitions":false,"clobberSiblings":false,"preloader":{"__m":"__inst_8a751efa_0_9"},"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["UnauthenticatedUFI.react","__elem_fc9f538f_0_w","__inst_8a751efa_0_a"],[{"constructor":{"__m":"UnauthenticatedUFI.react"},"concurrent_UNSTABLE":false,"props":{"bigPipeContext":{"__bigPipeContext":1},"defaultActorID":"","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"hideUntilVisibleOrDD":false,"isCommentsCSSCloakingEnabled":false,"queryVariables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6NjAzMDIwOTczODA3ODYx","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661835413911714","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"storyRenderLocation":"homepage_stream","streamLastViewTime":null,"usePreloadedQueryRenderer":true},"dummyElem":{"__m":"__elem_fc9f538f_0_w"},"acrossTransitions":false,"clobberSiblings":false,"preloader":{"__m":"__inst_8a751efa_0_a"},"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["VideoFeedRegister","registerVideoUnit",["__markup_072b8e64_0_b","HTML","__elem_a588f507_0_2u","__elem_a648e52c_0_b","__elem_a588f507_0_2v","__inst_a648e52c_0_b"],[{"fallback_link":{"__m":"__markup_072b8e64_0_b"},"root_element":{"__m":"__elem_a588f507_0_2u"},"video_element":{"__m":"__elem_a648e52c_0_b"},"video_container":{"__m":"__elem_a588f507_0_2v"}},{"controller":{"__m":"__inst_a648e52c_0_b"},"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","startsMuted":false,"flash_id":"id_5e16fafc197650724210173","viewport_autoplay":false,"video_ids":["2600764323543751"],"channelVersion":null,"abort_loading_blocked":false,"isLiveStreaming":false,"videoChannelCaller":"channel_view_from_page_timeline","autoPlayWithChannelViewOrSnowlift":false,"wnsEnabled":false,"isGamingVideo":false}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["UnauthenticatedUFI.react","__elem_fc9f538f_0_x","__inst_8a751efa_0_b"],[{"constructor":{"__m":"UnauthenticatedUFI.react"},"concurrent_UNSTABLE":false,"props":{"bigPipeContext":{"__bigPipeContext":1},"defaultActorID":"","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"hideUntilVisibleOrDD":false,"isCommentsCSSCloakingEnabled":false,"queryVariables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6NDc2MTMyMDE2NDI5Nzg1","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661853320576590","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"storyRenderLocation":"homepage_stream","streamLastViewTime":null,"usePreloadedQueryRenderer":true},"dummyElem":{"__m":"__elem_fc9f538f_0_x"},"acrossTransitions":false,"clobberSiblings":false,"preloader":{"__m":"__inst_8a751efa_0_b"},"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["VideosRenderingInstrumentation","storeRenderTime",["__elem_a648e52c_0_b"],[{"__m":"__elem_a648e52c_0_b"}]],["__inst_a648e52c_0_b"],["__inst_6d29ee41_0_b"],["__inst_2223e126_0_b"],["__inst_a176866d_0_b"],["VideoDisplayTimePlayButton","register",["__elem_8c33f2cf_0_b","__elem_492d06b7_0_b"],[{"__m":"__elem_8c33f2cf_0_b"},{"__m":"__elem_492d06b7_0_b"}]],["__inst_8c33f2cf_0_b"],["Focus","relocate",["__elem_8937e029_0_b","__elem_2afd4650_0_b"],[{"__m":"__elem_8937e029_0_b"},{"__m":"__elem_2afd4650_0_b"}]],["__inst_492d06b7_0_b"],["ReactRenderer","constructAndRenderComponent",["PlayerKeyboardControls.react","__inst_a648e52c_0_b","__elem_444213d2_0_b"],[{"__m":"PlayerKeyboardControls.react"},{"controller":{"__m":"__inst_a648e52c_0_b"},"isLiveRewindEnabled":false,"isLiveStreaming":false},{"__m":"__elem_444213d2_0_b"}]],["ReactRenderer","constructAndRenderComponent",["VideoVODIndicator.react","__inst_a648e52c_0_b","__elem_a588f507_0_2y"],[{"__m":"VideoVODIndicator.react"},{"renderLocation":"videoNewsFeedUnit","vpc":{"__m":"__inst_a648e52c_0_b"}},{"__m":"__elem_a588f507_0_2y"}]],["__inst_21a8c1d4_0_b"],["__inst_c5b6bd12_0_b"],["__inst_dbb8a0b1_0_b"],["__inst_c523de71_0_b"],["__inst_1516ab8a_0_b"],["__inst_74f26af1_0_b"],["__inst_9f6501f1_0_b"],["__inst_8a4b6a17_0_8"],["__inst_96dc3ae7_0_b"],["__inst_e698bc89_0_a"],["__inst_70689822_0_a"],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["UnauthenticatedUFI.react","__elem_fc9f538f_0_y","__inst_8a751efa_0_c"],[{"constructor":{"__m":"UnauthenticatedUFI.react"},"concurrent_UNSTABLE":false,"props":{"bigPipeContext":{"__bigPipeContext":1},"defaultActorID":"","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"hideUntilVisibleOrDD":false,"isCommentsCSSCloakingEnabled":false,"queryVariables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjY1OTczOTIxNzQ1NDY2Nw==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2659739217454667","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"storyRenderLocation":"homepage_stream","streamLastViewTime":null,"usePreloadedQueryRenderer":true},"dummyElem":{"__m":"__elem_fc9f538f_0_y"},"acrossTransitions":false,"clobberSiblings":false,"preloader":{"__m":"__inst_8a751efa_0_c"},"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["UnauthenticatedUFI.react","__elem_fc9f538f_0_z","__inst_8a751efa_0_d"],[{"constructor":{"__m":"UnauthenticatedUFI.react"},"concurrent_UNSTABLE":false,"props":{"bigPipeContext":{"__bigPipeContext":1},"defaultActorID":"","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"hideUntilVisibleOrDD":false,"isCommentsCSSCloakingEnabled":false,"queryVariables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjY2MTA5NDMyMzk4NTgyMw==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661094323985823","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"storyRenderLocation":"homepage_stream","streamLastViewTime":null,"usePreloadedQueryRenderer":true},"dummyElem":{"__m":"__elem_fc9f538f_0_z"},"acrossTransitions":false,"clobberSiblings":false,"preloader":{"__m":"__inst_8a751efa_0_d"},"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["ProfilePhotoPresenceGreenDot.react","__elem_fc9f538f_0_10"],[{"constructor":{"__m":"ProfilePhotoPresenceGreenDot.react"},"concurrent_UNSTABLE":false,"props":{"profileID":"300653326696613"},"dummyElem":{"__m":"__elem_fc9f538f_0_10"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["UnauthenticatedUFI.react","__elem_fc9f538f_0_11","__inst_8a751efa_0_e"],[{"constructor":{"__m":"UnauthenticatedUFI.react"},"concurrent_UNSTABLE":false,"props":{"bigPipeContext":{"__bigPipeContext":1},"defaultActorID":"","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"hideUntilVisibleOrDD":false,"isCommentsCSSCloakingEnabled":false,"queryVariables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MTM0NDY5MjY4NTY5NjY5MA==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661922137236375","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"storyRenderLocation":"homepage_stream","streamLastViewTime":null,"usePreloadedQueryRenderer":true},"dummyElem":{"__m":"__elem_fc9f538f_0_11"},"acrossTransitions":false,"clobberSiblings":false,"preloader":{"__m":"__inst_8a751efa_0_e"},"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["VideoFeedRegister","registerVideoUnit",["__markup_072b8e64_0_c","HTML","__elem_a588f507_0_30","__elem_a648e52c_0_c","__elem_a588f507_0_31","__inst_a648e52c_0_c"],[{"fallback_link":{"__m":"__markup_072b8e64_0_c"},"root_element":{"__m":"__elem_a588f507_0_30"},"video_element":{"__m":"__elem_a648e52c_0_c"},"video_container":{"__m":"__elem_a588f507_0_31"}},{"controller":{"__m":"__inst_a648e52c_0_c"},"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","startsMuted":false,"flash_id":"id_5e16fafc26be62732618889","viewport_autoplay":false,"video_ids":["476132016429785"],"channelVersion":null,"abort_loading_blocked":false,"isLiveStreaming":false,"videoChannelCaller":"channel_view_from_page_timeline","autoPlayWithChannelViewOrSnowlift":false,"wnsEnabled":false,"isGamingVideo":false}]],["VideosRenderingInstrumentation","storeRenderTime",["__elem_a648e52c_0_c"],[{"__m":"__elem_a648e52c_0_c"}]],["__inst_a648e52c_0_c"],["__inst_6d29ee41_0_c"],["__inst_2223e126_0_c"],["__inst_a176866d_0_c"],["VideoDisplayTimePlayButton","register",["__elem_8c33f2cf_0_c","__elem_492d06b7_0_c"],[{"__m":"__elem_8c33f2cf_0_c"},{"__m":"__elem_492d06b7_0_c"}]],["__inst_8c33f2cf_0_c"],["Focus","relocate",["__elem_8937e029_0_c","__elem_2afd4650_0_c"],[{"__m":"__elem_8937e029_0_c"},{"__m":"__elem_2afd4650_0_c"}]],["__inst_492d06b7_0_c"],["ReactRenderer","constructAndRenderComponent",["PlayerKeyboardControls.react","__inst_a648e52c_0_c","__elem_444213d2_0_c"],[{"__m":"PlayerKeyboardControls.react"},{"controller":{"__m":"__inst_a648e52c_0_c"},"isLiveRewindEnabled":false,"isLiveStreaming":false},{"__m":"__elem_444213d2_0_c"}]],["ReactRenderer","constructAndRenderComponent",["VideoVODIndicator.react","__inst_a648e52c_0_c","__elem_a588f507_0_34"],[{"__m":"VideoVODIndicator.react"},{"renderLocation":"videoNewsFeedUnit","vpc":{"__m":"__inst_a648e52c_0_c"}},{"__m":"__elem_a588f507_0_34"}]],["__inst_21a8c1d4_0_c"],["__inst_c5b6bd12_0_c"],["__inst_dbb8a0b1_0_c"],["__inst_c523de71_0_c"],["__inst_1516ab8a_0_c"],["__inst_74f26af1_0_c"],["__inst_9f6501f1_0_c"],["__inst_8a4b6a17_0_9"],["__inst_96dc3ae7_0_c"],["__inst_e698bc89_0_b"],["__inst_70689822_0_b"],["__inst_70dbca80_0_a"],["VideoFeedRegister","registerVideoUnit",["__markup_072b8e64_0_d","HTML","__elem_a588f507_0_36","__elem_a648e52c_0_d","__elem_a588f507_0_37","__inst_a648e52c_0_d"],[{"fallback_link":{"__m":"__markup_072b8e64_0_d"},"root_element":{"__m":"__elem_a588f507_0_36"},"video_element":{"__m":"__elem_a648e52c_0_d"},"video_container":{"__m":"__elem_a588f507_0_37"}},{"controller":{"__m":"__inst_a648e52c_0_d"},"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","startsMuted":false,"flash_id":"id_5e16fafc2cb862503116584","viewport_autoplay":false,"video_ids":["1344692685696690"],"channelVersion":null,"abort_loading_blocked":false,"isLiveStreaming":false,"videoChannelCaller":"channel_view_from_page_timeline","autoPlayWithChannelViewOrSnowlift":false,"wnsEnabled":false,"isGamingVideo":false}]],["VideosRenderingInstrumentation","storeRenderTime",["__elem_a648e52c_0_d"],[{"__m":"__elem_a648e52c_0_d"}]],["__inst_a648e52c_0_d"],["__inst_6d29ee41_0_d"],["__inst_2223e126_0_d"],["__inst_a176866d_0_d"],["VideoDisplayTimePlayButton","register",["__elem_8c33f2cf_0_d","__elem_492d06b7_0_d"],[{"__m":"__elem_8c33f2cf_0_d"},{"__m":"__elem_492d06b7_0_d"}]],["__inst_8c33f2cf_0_d"],["Focus","relocate",["__elem_8937e029_0_d","__elem_2afd4650_0_d"],[{"__m":"__elem_8937e029_0_d"},{"__m":"__elem_2afd4650_0_d"}]],["__inst_492d06b7_0_d"],["ReactRenderer","constructAndRenderComponent",["PlayerKeyboardControls.react","__inst_a648e52c_0_d","__elem_444213d2_0_d"],[{"__m":"PlayerKeyboardControls.react"},{"controller":{"__m":"__inst_a648e52c_0_d"},"isLiveRewindEnabled":false,"isLiveStreaming":false},{"__m":"__elem_444213d2_0_d"}]],["ReactRenderer","constructAndRenderComponent",["VideoVODIndicator.react","__inst_a648e52c_0_d","__elem_a588f507_0_3a"],[{"__m":"VideoVODIndicator.react"},{"renderLocation":"videoNewsFeedUnit","vpc":{"__m":"__inst_a648e52c_0_d"}},{"__m":"__elem_a588f507_0_3a"}]],["__inst_21a8c1d4_0_d"],["__inst_866f970e_0_2"],["__inst_c5b6bd12_0_d"],["__inst_dbb8a0b1_0_d"],["__inst_c523de71_0_d"],["__inst_1516ab8a_0_d"],["__inst_74f26af1_0_d"],["__inst_9f6501f1_0_d"],["__inst_8a4b6a17_0_a"],["__inst_96dc3ae7_0_d"],["__inst_e698bc89_0_c"],["__inst_70689822_0_c"],["LitestandShareAttachment","init",["__elem_a588f507_0_3c"],[{"__m":"__elem_a588f507_0_3c"}]],["__inst_70dbca80_0_b"],["__inst_70dbca80_0_c"],["VideoDashPrefetchCache","loadVideo",[],[{"videoID":2600764323543751,"manifest":[],"video":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/10000000_448107146143340_6290609844198047744_n.mp4?_nc_cat=106&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=CirLP5_lbYIAQlend5743Xu0Wcl2qQ3Hja3CwoGhIy1OOUGjKtcpgyJtw&_nc_ht=video-cdg2-1.xx&oh=c1a6bc2bd8bc9fab6a5ee695354f9f36&oe=5E8E6CA1","start":0,"end":968,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/10000000_448107146143340_6290609844198047744_n.mp4?_nc_cat=106&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=CirLP5_lbYIAQlend5743Xu0Wcl2qQ3Hja3CwoGhIy1OOUGjKtcpgyJtw&_nc_ht=video-cdg2-1.xx&oh=c1a6bc2bd8bc9fab6a5ee695354f9f36&oe=5E8E6CA1","start":969,"end":1792,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/10000000_448107146143340_6290609844198047744_n.mp4?_nc_cat=106&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=CirLP5_lbYIAQlend5743Xu0Wcl2qQ3Hja3CwoGhIy1OOUGjKtcpgyJtw&_nc_ht=video-cdg2-1.xx&oh=c1a6bc2bd8bc9fab6a5ee695354f9f36&oe=5E8E6CA1","start":1793,"end":209276,"segment_type":null,"mime_codec":null,"representation_id":null}],"audio":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82608004_2637693926517245_5732272183141466112_n.mp4?_nc_cat=1&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=omnjIsG2W-0AQlckVEqGNHNRPLfdwPm-Fm1gL6QmNLdS84iqS7AfmCmIA&_nc_ht=video-cdg2-1.xx&oh=59986dbf6933c4f473b65af3e66e3330&oe=5E172E7F","start":0,"end":930,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82608004_2637693926517245_5732272183141466112_n.mp4?_nc_cat=1&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=omnjIsG2W-0AQlckVEqGNHNRPLfdwPm-Fm1gL6QmNLdS84iqS7AfmCmIA&_nc_ht=video-cdg2-1.xx&oh=59986dbf6933c4f473b65af3e66e3330&oe=5E172E7F","start":931,"end":1766,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82608004_2637693926517245_5732272183141466112_n.mp4?_nc_cat=1&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=omnjIsG2W-0AQlckVEqGNHNRPLfdwPm-Fm1gL6QmNLdS84iqS7AfmCmIA&_nc_ht=video-cdg2-1.xx&oh=59986dbf6933c4f473b65af3e66e3330&oe=5E172E7F","start":1767,"end":17867,"segment_type":null,"mime_codec":null,"representation_id":null}]},false,0.9]],["LitestandShareAttachment","init",["__elem_a588f507_0_3d"],[{"__m":"__elem_a588f507_0_3d"}]],["__inst_57d19858_0_b"],["VideoDashPrefetchCache","loadVideo",[],[{"videoID":476132016429785,"manifest":[],"video":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/10000000_565284237361403_6734269941421178880_n.mp4?_nc_cat=103&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=aUyZCR_rIDgAQnPAYB4Vgwmxl7Fqw5kTBxYGRNDjHzlXI-5fnrsudd2TQ&_nc_ht=video-cdg2-1.xx&oh=cdfd94911469ceccb608a06b94346c67&oe=5E9878E4","start":0,"end":969,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/10000000_565284237361403_6734269941421178880_n.mp4?_nc_cat=103&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=aUyZCR_rIDgAQnPAYB4Vgwmxl7Fqw5kTBxYGRNDjHzlXI-5fnrsudd2TQ&_nc_ht=video-cdg2-1.xx&oh=cdfd94911469ceccb608a06b94346c67&oe=5E9878E4","start":970,"end":1397,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/10000000_565284237361403_6734269941421178880_n.mp4?_nc_cat=103&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=aUyZCR_rIDgAQnPAYB4Vgwmxl7Fqw5kTBxYGRNDjHzlXI-5fnrsudd2TQ&_nc_ht=video-cdg2-1.xx&oh=cdfd94911469ceccb608a06b94346c67&oe=5E9878E4","start":1398,"end":355776,"segment_type":null,"mime_codec":null,"representation_id":null}],"audio":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82583092_726562484418782_6862002857214738432_n.mp4?_nc_cat=103&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=ayubOrFdj_YAQlID0PGsrMW_ONjzHbax3VANiEkJPC3s6TexfQn1kA90A&_nc_ht=video-cdg2-1.xx&oh=5436333e4f61d68f1535b4d265be55a7&oe=5E1727DC","start":0,"end":930,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82583092_726562484418782_6862002857214738432_n.mp4?_nc_cat=103&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=ayubOrFdj_YAQlID0PGsrMW_ONjzHbax3VANiEkJPC3s6TexfQn1kA90A&_nc_ht=video-cdg2-1.xx&oh=5436333e4f61d68f1535b4d265be55a7&oe=5E1727DC","start":931,"end":1370,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82583092_726562484418782_6862002857214738432_n.mp4?_nc_cat=103&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=ayubOrFdj_YAQlID0PGsrMW_ONjzHbax3VANiEkJPC3s6TexfQn1kA90A&_nc_ht=video-cdg2-1.xx&oh=5436333e4f61d68f1535b4d265be55a7&oe=5E1727DC","start":1371,"end":18080,"segment_type":null,"mime_codec":null,"representation_id":null}]},false,0.9]],["VideoFeedRegister","registerVideoUnit",["__markup_072b8e64_0_e","HTML","__elem_a588f507_0_3e","__elem_a648e52c_0_e","__elem_a588f507_0_3f","__inst_a648e52c_0_e"],[{"fallback_link":{"__m":"__markup_072b8e64_0_e"},"root_element":{"__m":"__elem_a588f507_0_3e"},"video_element":{"__m":"__elem_a648e52c_0_e"},"video_container":{"__m":"__elem_a588f507_0_3f"}},{"controller":{"__m":"__inst_a648e52c_0_e"},"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","startsMuted":false,"flash_id":"id_5e16fafc362306893047768","viewport_autoplay":false,"video_ids":["458567871694659"],"channelVersion":null,"abort_loading_blocked":false,"isLiveStreaming":false,"videoChannelCaller":"channel_view_from_page_timeline","autoPlayWithChannelViewOrSnowlift":false,"wnsEnabled":false,"isGamingVideo":false}]],["VideosRenderingInstrumentation","storeRenderTime",["__elem_a648e52c_0_e"],[{"__m":"__elem_a648e52c_0_e"}]],["__inst_a648e52c_0_e"],["__inst_6d29ee41_0_e"],["__inst_2223e126_0_e"],["__inst_a176866d_0_e"],["VideoDisplayTimePlayButton","register",["__elem_8c33f2cf_0_e","__elem_492d06b7_0_e"],[{"__m":"__elem_8c33f2cf_0_e"},{"__m":"__elem_492d06b7_0_e"}]],["__inst_8c33f2cf_0_e"],["Focus","relocate",["__elem_8937e029_0_e","__elem_2afd4650_0_e"],[{"__m":"__elem_8937e029_0_e"},{"__m":"__elem_2afd4650_0_e"}]],["__inst_492d06b7_0_e"],["ReactRenderer","constructAndRenderComponent",["PlayerKeyboardControls.react","__inst_a648e52c_0_e","__elem_444213d2_0_e"],[{"__m":"PlayerKeyboardControls.react"},{"controller":{"__m":"__inst_a648e52c_0_e"},"isLiveRewindEnabled":false,"isLiveStreaming":false},{"__m":"__elem_444213d2_0_e"}]],["ReactRenderer","constructAndRenderComponent",["VideoVODIndicator.react","__inst_a648e52c_0_e","__elem_a588f507_0_3i"],[{"__m":"VideoVODIndicator.react"},{"renderLocation":"videoNewsFeedUnit","vpc":{"__m":"__inst_a648e52c_0_e"}},{"__m":"__elem_a588f507_0_3i"}]],["__inst_21a8c1d4_0_e"],["__inst_c5b6bd12_0_e"],["__inst_dbb8a0b1_0_e"],["__inst_c523de71_0_e"],["__inst_1516ab8a_0_e"],["__inst_74f26af1_0_e"],["__inst_9f6501f1_0_e"],["__inst_8a4b6a17_0_b"],["__inst_96dc3ae7_0_e"],["__inst_e698bc89_0_d"],["__inst_70689822_0_d"],["VideoDashPrefetchCache","loadVideo",[],[{"videoID":1344692685696690,"manifest":[],"video":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82403356_593548824763145_1458559134101143552_n.mp4?_nc_cat=105&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=3PHvX4_n0rIAQn98gr0lfixbpF6IxdC9F2pnQBx10T6Jctffen4vRY96A&_nc_ht=video-cdg2-1.xx&oh=c713923a0678eed9908c911dff93b0be&oe=5EDC291B","start":0,"end":967,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82403356_593548824763145_1458559134101143552_n.mp4?_nc_cat=105&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=3PHvX4_n0rIAQn98gr0lfixbpF6IxdC9F2pnQBx10T6Jctffen4vRY96A&_nc_ht=video-cdg2-1.xx&oh=c713923a0678eed9908c911dff93b0be&oe=5EDC291B","start":968,"end":1167,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82403356_593548824763145_1458559134101143552_n.mp4?_nc_cat=105&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=3PHvX4_n0rIAQn98gr0lfixbpF6IxdC9F2pnQBx10T6Jctffen4vRY96A&_nc_ht=video-cdg2-1.xx&oh=c713923a0678eed9908c911dff93b0be&oe=5EDC291B","start":1168,"end":83532,"segment_type":null,"mime_codec":null,"representation_id":null}],"audio":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82695502_2542373369416994_1444825920337608704_n.mp4?_nc_cat=101&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=DOI-s4z_DSsAQl4KxWTjC9XhbAVhZZq-GGo1riwyT3066vSxwahNx4Olg&_nc_ht=video-cdg2-1.xx&oh=6196865b01d99dfbf8d1d3238dd7af6b&oe=5E17275C","start":0,"end":931,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82695502_2542373369416994_1444825920337608704_n.mp4?_nc_cat=101&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=DOI-s4z_DSsAQl4KxWTjC9XhbAVhZZq-GGo1riwyT3066vSxwahNx4Olg&_nc_ht=video-cdg2-1.xx&oh=6196865b01d99dfbf8d1d3238dd7af6b&oe=5E17275C","start":932,"end":1143,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82695502_2542373369416994_1444825920337608704_n.mp4?_nc_cat=101&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=DOI-s4z_DSsAQl4KxWTjC9XhbAVhZZq-GGo1riwyT3066vSxwahNx4Olg&_nc_ht=video-cdg2-1.xx&oh=6196865b01d99dfbf8d1d3238dd7af6b&oe=5E17275C","start":1144,"end":17523,"segment_type":null,"mime_codec":null,"representation_id":null}]},false,0.9]],["__inst_57d19858_0_c"],["__inst_57d19858_0_d"],["__inst_70dbca80_0_d"],["VideoDashPrefetchCache","loadVideo",[],[{"videoID":458567871694659,"manifest":[],"video":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82451529_2463991000527659_894717863296761856_n.mp4?_nc_cat=103&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=4J1-Nlb162IAQnv8rAwXgtTrzBJPu-v6BSSDBJnFN5Bnlilcdt2egbwXQ&_nc_ht=video-cdg2-1.xx&oh=0d0632e7f0702ab989de3f281d561359&oe=5EA577C4","start":0,"end":968,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82451529_2463991000527659_894717863296761856_n.mp4?_nc_cat=103&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=4J1-Nlb162IAQnv8rAwXgtTrzBJPu-v6BSSDBJnFN5Bnlilcdt2egbwXQ&_nc_ht=video-cdg2-1.xx&oh=0d0632e7f0702ab989de3f281d561359&oe=5EA577C4","start":969,"end":1372,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82451529_2463991000527659_894717863296761856_n.mp4?_nc_cat=103&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=4J1-Nlb162IAQnv8rAwXgtTrzBJPu-v6BSSDBJnFN5Bnlilcdt2egbwXQ&_nc_ht=video-cdg2-1.xx&oh=0d0632e7f0702ab989de3f281d561359&oe=5EA577C4","start":1373,"end":405135,"segment_type":null,"mime_codec":null,"representation_id":null}],"audio":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/83014334_1051092765234326_7489630169095733248_n.mp4?_nc_cat=101&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=ddxU-ccBX2sAQkRITmmChP-0Sz30tiW2U9PPR1GzkXzx1juJuCLT836nw&_nc_ht=video-cdg2-1.xx&oh=a3ba279f840f66d69fb26965eb73d362&oe=5E173E99","start":0,"end":930,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/83014334_1051092765234326_7489630169095733248_n.mp4?_nc_cat=101&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=ddxU-ccBX2sAQkRITmmChP-0Sz30tiW2U9PPR1GzkXzx1juJuCLT836nw&_nc_ht=video-cdg2-1.xx&oh=a3ba279f840f66d69fb26965eb73d362&oe=5E173E99","start":931,"end":1334,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/83014334_1051092765234326_7489630169095733248_n.mp4?_nc_cat=101&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=ddxU-ccBX2sAQkRITmmChP-0Sz30tiW2U9PPR1GzkXzx1juJuCLT836nw&_nc_ht=video-cdg2-1.xx&oh=a3ba279f840f66d69fb26965eb73d362&oe=5E173E99","start":1335,"end":17763,"segment_type":null,"mime_codec":null,"representation_id":null}]},false,0.9]],["VideoFeedRegister","registerVideoUnit",["__markup_072b8e64_0_f","HTML","__elem_a588f507_0_3k","__elem_a648e52c_0_f","__elem_a588f507_0_3l","__inst_a648e52c_0_f"],[{"fallback_link":{"__m":"__markup_072b8e64_0_f"},"root_element":{"__m":"__elem_a588f507_0_3k"},"video_element":{"__m":"__elem_a648e52c_0_f"},"video_container":{"__m":"__elem_a588f507_0_3l"}},{"controller":{"__m":"__inst_a648e52c_0_f"},"autoplay_reason":"gatekeeper","autoplay_setting":"default_autoplay","startsMuted":false,"flash_id":"id_5e16fafc3dc4e6000773891","viewport_autoplay":false,"video_ids":["724280891432620"],"channelVersion":null,"abort_loading_blocked":false,"isLiveStreaming":false,"videoChannelCaller":"channel_view_from_page_timeline","autoPlayWithChannelViewOrSnowlift":false,"wnsEnabled":false,"isGamingVideo":false}]],["VideosRenderingInstrumentation","storeRenderTime",["__elem_a648e52c_0_f"],[{"__m":"__elem_a648e52c_0_f"}]],["__inst_a648e52c_0_f"],["__inst_6d29ee41_0_f"],["__inst_2223e126_0_f"],["__inst_a176866d_0_f"],["VideoDisplayTimePlayButton","register",["__elem_8c33f2cf_0_f","__elem_492d06b7_0_f"],[{"__m":"__elem_8c33f2cf_0_f"},{"__m":"__elem_492d06b7_0_f"}]],["__inst_8c33f2cf_0_f"],["Focus","relocate",["__elem_8937e029_0_f","__elem_2afd4650_0_f"],[{"__m":"__elem_8937e029_0_f"},{"__m":"__elem_2afd4650_0_f"}]],["__inst_492d06b7_0_f"],["ReactRenderer","constructAndRenderComponent",["PlayerKeyboardControls.react","__inst_a648e52c_0_f","__elem_444213d2_0_f"],[{"__m":"PlayerKeyboardControls.react"},{"controller":{"__m":"__inst_a648e52c_0_f"},"isLiveRewindEnabled":false,"isLiveStreaming":false},{"__m":"__elem_444213d2_0_f"}]],["ReactRenderer","constructAndRenderComponent",["VideoVODIndicator.react","__inst_a648e52c_0_f","__elem_a588f507_0_3o"],[{"__m":"VideoVODIndicator.react"},{"renderLocation":"videoNewsFeedUnit","vpc":{"__m":"__inst_a648e52c_0_f"}},{"__m":"__elem_a588f507_0_3o"}]],["__inst_21a8c1d4_0_f"],["__inst_c5b6bd12_0_f"],["__inst_dbb8a0b1_0_f"],["__inst_c523de71_0_f"],["__inst_1516ab8a_0_f"],["__inst_74f26af1_0_f"],["__inst_9f6501f1_0_f"],["__inst_8a4b6a17_0_c"],["__inst_96dc3ae7_0_f"],["__inst_e698bc89_0_e"],["__inst_70689822_0_e"],["__inst_57d19858_0_e"],["__inst_70dbca80_0_e"],["VideoDashPrefetchCache","loadVideo",[],[{"videoID":724280891432620,"manifest":[],"video":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82832768_522089448666424_8797839647968329728_n.mp4?_nc_cat=107&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=4ejfl2wpV0EAQkxec_-UfZMOM1KMoUf8sLgyMKKzb1JqesnAXBgRvE3uA&_nc_ht=video-cdg2-1.xx&oh=eb202917a9d14c217b388d9ae8e40f26&oe=5E95869C","start":0,"end":969,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82832768_522089448666424_8797839647968329728_n.mp4?_nc_cat=107&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=4ejfl2wpV0EAQkxec_-UfZMOM1KMoUf8sLgyMKKzb1JqesnAXBgRvE3uA&_nc_ht=video-cdg2-1.xx&oh=eb202917a9d14c217b388d9ae8e40f26&oe=5E95869C","start":970,"end":1205,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t39.24129-2\/82832768_522089448666424_8797839647968329728_n.mp4?_nc_cat=107&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfdjRfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=4ejfl2wpV0EAQkxec_-UfZMOM1KMoUf8sLgyMKKzb1JqesnAXBgRvE3uA&_nc_ht=video-cdg2-1.xx&oh=eb202917a9d14c217b388d9ae8e40f26&oe=5E95869C","start":1206,"end":101922,"segment_type":null,"mime_codec":null,"representation_id":null}],"audio":[{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82690482_2432199860355303_2746578886543278080_n.mp4?_nc_cat=106&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=hM57AZ1Sw4cAQnaH_9ypgmrxjo6rIWSyKKCZ1T8ivRLCNCnRYbAK0LdNA&_nc_ht=video-cdg2-1.xx&oh=c84ef4253c85ed98db46b8825de93b14&oe=5E172765","start":0,"end":931,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82690482_2432199860355303_2746578886543278080_n.mp4?_nc_cat=106&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=hM57AZ1Sw4cAQnaH_9ypgmrxjo6rIWSyKKCZ1T8ivRLCNCnRYbAK0LdNA&_nc_ht=video-cdg2-1.xx&oh=c84ef4253c85ed98db46b8825de93b14&oe=5E172765","start":932,"end":1167,"segment_type":null,"mime_codec":null,"representation_id":null},{"url":"https:\/\/video-cdg2-1.xx.fbcdn.net\/v\/t42.1790-2\/82690482_2432199860355303_2746578886543278080_n.mp4?_nc_cat=106&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ\u00253D\u00253D&_nc_ohc=hM57AZ1Sw4cAQnaH_9ypgmrxjo6rIWSyKKCZ1T8ivRLCNCnRYbAK0LdNA&_nc_ht=video-cdg2-1.xx&oh=c84ef4253c85ed98db46b8825de93b14&oe=5E172765","start":1168,"end":17655,"segment_type":null,"mime_codec":null,"representation_id":null}]},false,0.9]],["__inst_57d19858_0_f"],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["UnauthenticatedUFI.react","__elem_fc9f538f_0_12","__inst_8a751efa_0_f"],[{"constructor":{"__m":"UnauthenticatedUFI.react"},"concurrent_UNSTABLE":false,"props":{"bigPipeContext":{"__bigPipeContext":1},"defaultActorID":"","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"hideUntilVisibleOrDD":false,"isCommentsCSSCloakingEnabled":false,"queryVariables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6NDU4NTY3ODcxNjk0NjU5","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2659898387438750","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"storyRenderLocation":"homepage_stream","streamLastViewTime":null,"usePreloadedQueryRenderer":true},"dummyElem":{"__m":"__elem_fc9f538f_0_12"},"acrossTransitions":false,"clobberSiblings":false,"preloader":{"__m":"__inst_8a751efa_0_f"},"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["UnauthenticatedUFI.react","__elem_fc9f538f_0_13","__inst_8a751efa_0_g"],[{"constructor":{"__m":"UnauthenticatedUFI.react"},"concurrent_UNSTABLE":false,"props":{"bigPipeContext":{"__bigPipeContext":1},"defaultActorID":"","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"hideUntilVisibleOrDD":false,"isCommentsCSSCloakingEnabled":false,"queryVariables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6NzI0MjgwODkxNDMyNjIw","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661965210565401","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"storyRenderLocation":"homepage_stream","streamLastViewTime":null,"usePreloadedQueryRenderer":true},"dummyElem":{"__m":"__elem_fc9f538f_0_13"},"acrossTransitions":false,"clobberSiblings":false,"preloader":{"__m":"__inst_8a751efa_0_g"},"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["UnauthenticatedUFI.react","__elem_fc9f538f_0_14","__inst_8a751efa_0_h"],[{"constructor":{"__m":"UnauthenticatedUFI.react"},"concurrent_UNSTABLE":false,"props":{"bigPipeContext":{"__bigPipeContext":1},"defaultActorID":"","feedLocation":"PAGE_TIMELINE","feedbackSource":22,"hideUntilVisibleOrDD":false,"isCommentsCSSCloakingEnabled":false,"queryVariables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjkwODI0MjQ3MjUyOTUxMw==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661948820567040","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"storyRenderLocation":"homepage_stream","streamLastViewTime":null,"usePreloadedQueryRenderer":true},"dummyElem":{"__m":"__elem_fc9f538f_0_14"},"acrossTransitions":false,"clobberSiblings":false,"preloader":{"__m":"__inst_8a751efa_0_h"},"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["__inst_70dbca80_0_f"],["UFIController","factory",["__elem_b8b0125f_0_0","Animation","UFINewCommentsPill.react","UFIMentionsInputProxy.react","JSResourceReference","__markup_e58791f2_0_0","HTML","__inst_33c6d1b4_0_0"],[{"__m":"__elem_b8b0125f_0_0"},{"shouldHideCommentsWhenCannotReply":false,"isaskquestion":false,"ftentidentifier":"781338735704182","source":22,"streamingCommentOrderReversed":true,"entstream":false,"facecastDirectlyRenderComments":false,"feedbackID":781338735704182,"facecastCommentsPolicy":"","feedcontext":"{\"reaction_unit_data\":{\"logging_data\":{\"impression_info\":\"eyJmIjp7Iml0ZW1fY291bnQiOiIxIn19\",\"surface\":\"www_pages_posts\",\"interacted_story_type\":\"688092377989036\",\"session_id\":\"e2cc18cd06f3025938b0d94b29f54142\"}},\"fbfeed_context\":true,\"location_type\":36,\"is_pinned_post\":false,\"can_moderate_timeline_story\":false,\"profile_id\":300653326696613,\"is_published_from_composer\":false,\"story_width\":502,\"outer_object_element_id\":\"u_0_q\",\"object_element_id\":\"u_0_q\",\"is_ad_preview\":false,\"is_editable\":false,\"mall_how_many_post_comments\":2,\"bump_reason\":0,\"enable_comment\":false,\"has_preclick_auto_pivot_unit\":false,\"frtp_eligible\":false,\"tn-str\":\"-R\",\"story_location\":\"desktop_feed\"}","feedLocationType":36,"isPage":false,"isSponsored":false,"location":"homepage_stream","sht":true,"islivestreaming":true,"shouldShowPrivateReplyNuxToPage":false,"shouldShowGeneralPrivateReplyNuxContent":true,"showSpatialReactions":false,"reactionsNuxConfig":null,"mayLogVPVs":false,"defaultNumCommentsToExpand":2,"isPermalink":false,"ownerName":"CGTN America","originContentCreatorName":null,"inlineSearchFeedbackConfig":null,"actorSelectorConfig":null,"disabledCommentTooltip":null,"shareLinkConfig":{"shareRel":"dialog","shareURI":"\/ajax\/sharer\/?s=11&appid=2392950137&id=781338735704182&p\u00255B0\u00255D=781338735704182&share_source_type=unknown&feedback_source=22","shareNowMenuURI":null,"embedURI":null,"interceptForPagePost":false,"misinformationConfirmDialogURI":null,"shareOptions":null},"loggedOutLinkConfig":{"showLikeLink":true,"likeAjaxifyURI":"\/ajax\/timeline\/sign_up_dialog\/?next=https\u00253A\u00252F\u00252Fwww.facebook.com\u00252Fcgtnamerica\u00252Fposts\u00252F&entity_id=300653326696613&context=like","showCommentLink":true,"commentAjaxifyURI":"\/ajax\/timeline\/sign_up_dialog\/?next=https\u00253A\u00252F\u00252Fwww.facebook.com\u00252Fcgtnamerica\u00252Fposts\u00252F&entity_id=300653326696613&context=comment","showShareLink":true,"shareAjaxifyURI":"\/ajax\/timeline\/sign_up_dialog\/?next=https\u00253A\u00252F\u00252Fwww.facebook.com\u00252Fcgtnamerica\u00252Fposts\u00252F&entity_id=300653326696613&context=share","showAddComment":false,"addCommentAjaxifyURI":"\/ajax\/timeline\/sign_up_dialog\/?next=https\u00253A\u00252F\u00252Fwww.facebook.com\u00252Fcgtnamerica\u00252Fposts\u00252F&entity_id=300653326696613&context=comment"},"showBling":false,"showCommentNuxForGroupMallAds":false,"showLikeNuxForGroupMallAds":false,"showLiveVideoAnnoucements":false,"showLivingRoomAnnouncements":false,"showLiveVideoBroadcastingJoinEvents":false,"disableCommentAndLikeForGroupAds":false,"groupMallAdsCommentNuxContent":"This is a sponsored post, which means people outside of this group may see it too, along with any reactions and comments.","fluentContentToken":"781338735704182","isLiveVOD":false,"enableVODCommentTimestamps":true,"showVODCommentTimestamps":false,"enableVODStreamingComments":false,"enablePinLiveComments":false,"permalink":"\/cgtnamerica\/videos\/781338735704182\/","isViewerTheOwner":false,"isLiveAudio":false,"shouldLogFacecastStreamingCommentDelay":null,"icebreakerAccessTokenForCommentSubscription":null,"isLivingRoom":false,"isActiveLivingRoom":false,"liveVideoCommentUIConfig":{"enableReactionUpdates":true},"livingRoomCommentSubscriptionConfig":"","enableAsyncFacecastUFI":false,"permalinkAddCommentNuxShown":false,"liveVideoThreadedCommentsConfig":{"enable_replies":true},"postViewCount":null,"totalPosts":1,"otherPostsViewCount":null,"isBottomUpCommentStreamingEnabled":false,"liveVideoNewCommentsPillConfig":{"Animation":{"__m":"Animation"},"UFINewCommentsPill":{"__m":"UFINewCommentsPill.react"}},"shouldShowPinnedCommentNux":false,"liveVideoCommentRedesignConfig":{"showRedesign":false,"alwaysShowButtons":false},"enableCommentPresence":true,"canShowMultipleBadges":false,"isScheduledLive":false,"livingRoomID":null,"messengerCommentPivotsParams":{"enabled":false,"pivotSendOnText":"Envoi dans Messenger\u00a0: activ\u00e9","pivotSendOffText":"Envoi dans Messenger\u00a0: d\u00e9sactiv\u00e9","pivotSendingText":"Envoi dans Messenger...","failedDialogText":{"bodyText":"Le message n\u2019a pas \u00e9t\u00e9 envoy\u00e9. V\u00e9rifiez votre connexion et r\u00e9essayez.","headerText":"Message non envoy\u00e9","primaryButton":"Ok"}},"frxActionTitle":{"__html":"Trouver de l\u2019aide ou signaler un commentaire"},"mentionsinput":{"inputComponent":{"__m":"UFIMentionsInputProxy.react"},"viewComponent":{"__jsr":"MentionsInputTypeaheadView.react"},"viewProps":{"positionAtContext":false}},"monitorHeight":false,"viewoptionstypeobjects":null,"viewoptionstypeobjectsorder":null,"addcommentautoflip":true,"disableCSSHiding":true,"feedbackMode":"expanded","feedcarded":true,"instanceid":"u_0_2z","pagesize":50,"shortenTimestamp":true,"showaddcomment":true,"showInlineComposer":true,"showshares":true,"placeholderText":"Votre commentaire...","replyPlaceholderText":"R\u00e9pondez...","substream_index":null},{"comments":[{"body":{"text":"Will America go to war","ranges":[],"aggregatedranges":[],"textdelightranges":[]},"isfeatured":false,"likecount":0,"hasviewerliked":false,"canremove":false,"canreport":false,"canedit":false,"canmutemembers":false,"isauthorbot":false,"isauthorweakreference":false,"isauthororiginalposter":false,"isauthornoncoworker":false,"istranslatable":false,"candeleteandblockcommenter":false,"canviewerremovecommenter":false,"canseeremovecontentoptions":false,"candeletecommentwithfeedback":false,"viewercanlike":false,"cancomment":false,"spamreplycount":0,"canembed":false,"canEditConstituentTitle":false,"hasConstituentBadge":false,"hasFriendsOnlyBadge":false,"needsApproval":false,"isApproved":false,"canAppeal":false,"canSecure":false,"daysToExpire":30,"ispinnedbyauthor":false,"canviewerpin":false,"canviewerunpin":false,"cansubscribe":false,"issubscribed":false,"canhidetextdelights":false,"voteEnabled":false,"commentVoteUIVersion":"none","displayNegativeVoteCount":false,"voteLabelVisibleDuration":0,"voteNuxConfigs":{"voteArrowNUXV2":null,"voteFirstArrowNUXV2":null},"parentcommentid":"","parentcommentauthorid":"","__typename":"saved","id":"781338735704182_781744652330257","fbid":"781744652330257","legacyid":"781744652330257","author":"100043915031466","ftentidentifier":"781338735704182","source":3,"highlightcomment":false,"scrolltopoffset":0,"text_delights_are_hidden":false,"privacy_value":0,"communityModerationState":"NONE","authorIsModerator":false,"timestamp":{"time":1578556700,"text":"","verbose":"Mercredi 8 janvier 2020, 23:58"},"surveyGalleryHighlight":false},{"body":{"text":""},"isfeatured":false,"likecount":0,"hasviewerliked":false,"canremove":false,"canreport":false,"canedit":false,"canmutemembers":false,"isauthorbot":false,"isauthorweakreference":false,"isauthororiginalposter":false,"isauthornoncoworker":false,"istranslatable":false,"candeleteandblockcommenter":false,"canviewerremovecommenter":false,"canseeremovecontentoptions":false,"candeletecommentwithfeedback":false,"viewercanlike":false,"cancomment":false,"spamreplycount":0,"canembed":false,"canEditConstituentTitle":false,"hasConstituentBadge":false,"hasFriendsOnlyBadge":false,"needsApproval":false,"isApproved":false,"canAppeal":false,"canSecure":false,"daysToExpire":30,"ispinnedbyauthor":false,"canviewerpin":false,"canviewerunpin":false,"cansubscribe":false,"issubscribed":false,"canhidetextdelights":false,"voteEnabled":false,"commentVoteUIVersion":"none","displayNegativeVoteCount":false,"voteLabelVisibleDuration":0,"voteNuxConfigs":{"voteArrowNUXV2":null,"voteFirstArrowNUXV2":null},"parentcommentid":"","parentcommentauthorid":"","__typename":"saved","id":"781338735704182_781755485662507","fbid":"781755485662507","legacyid":"781755485662507","author":"100045089322910","ftentidentifier":"781338735704182","source":0,"highlightcomment":false,"scrolltopoffset":0,"text_delights_are_hidden":false,"privacy_value":0,"communityModerationState":"NONE","authorIsModerator":false,"timestamp":{"time":1578557543,"text":"","verbose":"Jeudi 9 janvier 2020, 00:12"},"attachment":{"type":"sticker","fbid":1049959055088344,"metadata":{"accessibilityLabel":"","width":80,"height":80,"source_uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t39.1997-6\/s110x80\/68940115_2353822571368646_2723590318904573952_n.png?_nc_cat=1&_nc_ohc=YRoLOqNqtDEAQmVaW3tctafZoNoPU6xGACfRQiUWejuyMugkyWcdSV2mA&_nc_ht=scontent-cdg2-1.xx&oh=14f4a8a9d325294b0f75a27b992026ef&oe=5EA901EE","source_uri_2x":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t39.1997-6\/p160x160\/68940115_2353822571368646_2723590318904573952_n.png?_nc_cat=1&_nc_ohc=YRoLOqNqtDEAQmVaW3tctafZoNoPU6xGACfRQiUWejuyMugkyWcdSV2mA&_nc_ht=scontent-cdg2-1.xx&oh=e95bbc2974b5dedb94d66c4461134b6c&oe=5EA40954","sprite_uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t39.1997-6\/p240x240\/69024153_2353822284702008_5201504333769736192_n.png?_nc_cat=1&_nc_ohc=TeTOzUSWf10AQlppu3LJ7-lsHrvmSxfmE_Qz6xlSvctiaDmDEXLjlg_DQ&_nc_ht=scontent-cdg2-1.xx&oh=102da3e9d2052ca519bac8807a0269ee&oe=5E9D188F","sprite_uri_2x":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t39.1997-6\/p480x480\/69024153_2353822284702008_5201504333769736192_n.png?_nc_cat=1&_nc_ohc=TeTOzUSWf10AQlppu3LJ7-lsHrvmSxfmE_Qz6xlSvctiaDmDEXLjlg_DQ&_nc_ht=scontent-cdg2-1.xx&oh=09684e59fe39e188c87eb9441dbe170a&oe=5EB0D7B6","frameCount":9,"framesPerCol":3,"framesPerRow":3,"frameRate":83},"markup":{"__m":"__markup_e58791f2_0_0"}},"surveyGalleryHighlight":false},{"body":{"text":"I can't even see this video how can i make an statement","ranges":[],"aggregatedranges":[],"textdelightranges":[]},"isfeatured":false,"likecount":0,"hasviewerliked":false,"canremove":false,"canreport":false,"canedit":false,"canmutemembers":false,"isauthorbot":false,"isauthorweakreference":false,"isauthororiginalposter":false,"isauthornoncoworker":false,"istranslatable":false,"candeleteandblockcommenter":false,"canviewerremovecommenter":false,"canseeremovecontentoptions":false,"candeletecommentwithfeedback":false,"viewercanlike":false,"cancomment":false,"spamreplycount":0,"canembed":false,"canEditConstituentTitle":false,"hasConstituentBadge":false,"hasFriendsOnlyBadge":false,"needsApproval":false,"isApproved":false,"canAppeal":false,"canSecure":false,"daysToExpire":30,"ispinnedbyauthor":false,"canviewerpin":false,"canviewerunpin":false,"cansubscribe":false,"issubscribed":false,"canhidetextdelights":false,"voteEnabled":false,"commentVoteUIVersion":"none","displayNegativeVoteCount":false,"voteLabelVisibleDuration":0,"voteNuxConfigs":{"voteArrowNUXV2":null,"voteFirstArrowNUXV2":null},"parentcommentid":"","parentcommentauthorid":"","__typename":"saved","id":"781338735704182_781756375662418","fbid":"781756375662418","legacyid":"781756375662418","author":"100002504435857","ftentidentifier":"781338735704182","source":3,"highlightcomment":false,"scrolltopoffset":0,"text_delights_are_hidden":false,"privacy_value":0,"communityModerationState":"NONE","authorIsModerator":false,"timestamp":{"time":1578557612,"text":"","verbose":"Jeudi 9 janvier 2020, 00:13"},"surveyGalleryHighlight":false}],"pinnedcomments":[],"profiles":{"100043915031466":{"id":"100043915031466","name":"Okwudirichukwu Nnaji","firstName":"Okwudirichukwu","vanity":"okwudirichukwu.nnaji","thumbSrc":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/cp0\/p32x32\/81610425_130842135056287_6439891177851322368_n.jpg?_nc_cat=108&_nc_ohc=kS9nUJUqcB0AQmcHmlCNxZrwJn9XzoQe3tEQPX_7cxr2kaU50Ls3D3Yjg&_nc_ht=scontent-cdg2-1.xx&oh=d8a9d1067952f087a9aa23bc4735e702&oe=5E92A7ED","persona":null,"gender":2,"i18nGender":1,"type":"user","is_friend":false},"100045089322910":{"id":"100045089322910","name":"Elly Drummer Tz","firstName":"Elly","vanity":"elly.drummertz.3","thumbSrc":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/cp0\/p32x32\/80453880_106320357547608_3404463263772049408_o.jpg?_nc_cat=103&_nc_ohc=8mpbCtI4FxEAQnRlqbjUNV7Jst789pMosU3Ltb_IPA9kqehIXglvqSakw&_nc_ht=scontent-cdg2-1.xx&oh=38cd883a4b6d78eaafe5a34eba7fa9a4&oe=5E9F20CC","persona":null,"gender":2,"i18nGender":1,"type":"user","is_friend":false},"100002504435857":{"id":"100002504435857","name":"Marco Martizon","firstName":"Marco","vanity":"marco.martizon","thumbSrc":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/cp0\/p32x32\/75279291_2469796773113780_3229717421208109056_n.jpg?_nc_cat=105&_nc_ohc=NvzCc6-FSJcAQmk-cB6BGch0LYR7r7p1MLl21HlL-38_eUEIrZo9acE-Q&_nc_ht=scontent-cdg2-1.xx&oh=e09d3534e2aa1af0a32751acf6408c06&oe=5EAE7719","persona":null,"gender":2,"i18nGender":1,"type":"user","is_friend":false}},"actions":[],"commentlists":{"comments":{"781338735704182":{"live_streaming":{"range":{"offset":0,"length":3},"values":["781338735704182_781744652330257","781338735704182_781755485662507","781338735704182_781756375662418"],"count":3,"clienthasall":false}}},"replies":{"781338735704182_781756375662418":{"range":{"offset":0,"length":0},"values":[],"count":0,"ftentidentifier":781338735704182,"containerorderingmode":"live_streaming"},"781338735704182_781744652330257":{"range":{"offset":0,"length":0},"values":[],"count":0,"ftentidentifier":781338735704182,"containerorderingmode":"live_streaming"},"781338735704182_781755485662507":{"range":{"offset":0,"length":0},"values":[],"count":0,"ftentidentifier":781338735704182,"containerorderingmode":"live_streaming"}}},"featuredcommentlists":{"comments":null,"replies":null},"featuredcommentids":null,"servertime":1578564347,"feedbacktarget":{"actorforpost":"","actorid":"300653326696613","actorname":"CGTN America","actorshortname":"CGTN America","allowphotoattachments":false,"allowvideoattachments":false,"allowfileattachments":false,"allowLiveVideoStickerAttachments":false,"allowgaminglivestreamgifattachments":false,"allowgifattachments":false,"allowstickerattachments":false,"allowbotmentions":false,"arecommentsdisabled":false,"cancomment":false,"canremoveall":false,"canviewermoderate":false,"canviewerreact":false,"constituentbanneruri":null,"commentcount":3,"commentTotalCount":null,"commentcountreduced":"3","commentdisablednotice":{"text":"Les commentaires ont \u00e9t\u00e9 d\u00e9sactiv\u00e9s pour cette publication.","ranges":[],"aggregatedranges":[],"textdelightranges":[]},"commentstargetfbid":"781338735704182","defaultcommentorderingmode":"live_streaming","displayreactions":false,"entidentifier":"781338735704182","flexiblestarsmodule":null,"grouporeventid":"","hasunseencollapsed":false,"hasviewerliked":false,"hasviewercommented":false,"hasviewersubscribed":false,"infinitescroll":false,"isadminviewer":false,"iscommentmarkdowneligible":false,"isflexibletippingenabled":false,"isgamingvideo":false,"isownerpage":true,"isqanda":false,"ispublic":true,"isActorFBEntity":false,"isplacecheckin":false,"isranked":true,"isshare":false,"isshortcuttippingenabled":false,"isthreaded":true,"isnativetipjarenabled":false,"tipjarmodule":null,"isviewermuted":false,"lastseentime":null,"lc":false,"pagelc":false,"lcl":false,"lti":false,"likecount":174,"likecountreduced":"174","likesentences":{"current":{"text":"\u0e40\u0e1e\u0e23\u0e0a\u0e06\u0e32\u0e15 \u0e2b\u0e19\u0e49\u0e32\u0e1e\u0e31\u0e07, Tan Lee Ming, Citra Straeck Black et 171 autres personnes aiment \u00e7a.","ranges":[],"aggregatedranges":[],"textdelightranges":[]},"alternate":{"text":"Vous, \u0e40\u0e1e\u0e23\u0e0a\u0e06\u0e32\u0e15 \u0e2b\u0e19\u0e49\u0e32\u0e1e\u0e31\u0e07, Tan Lee Ming, Citra Straeck Black et 171 autres personnes aimez \u00e7a.","ranges":[],"aggregatedranges":[],"textdelightranges":[]}},"livepinnedcommentid":null,"ll":false,"mentionsdatasource":{"__m":"__inst_33c6d1b4_0_0"},"mentionsdatasourceargs":[{"maxResults":5,"queryData":{"context":"topics","viewer":0,"filter":["page","user"],"include_fans":false,"context_id":0,"rsp":"mentions","post_fbid":781338735704182},"queryEndpoint":"\/ajax\/typeahead\/search.php","bootstrapData":{"rsp":"mentions"},"bootstrapEndpoint":"","enabledLocalCache":true,"enabledMergeUids":true,"disableAllCaches":false,"globalKeywordsEndpoint":"","enforceNewRequestIDUponFetch":false,"bootstrapEndpoints":[{"endpoint":"\/ajax\/typeahead\/first_degree.php","data":{"context":"mentions","viewer":0,"token":"1578485464-7","filter":["page","group","app","event"],"options":["friends_only","nm"]}}]}],"messagereplycontext":null,"mutednotice":null,"ownerid":"300653326696613","permalink":"\/cgtnamerica\/videos\/781338735704182\/","permalinkcommentid":null,"replysocialsentencemaxreplies":10,"seenbyall":false,"seencount":0,"sharecount":22,"sharecountreduced":"22","sharefbid":"781338735704182","showconstituentbadgev2optin":false,"showfeaturedreplies":true,"showremovemenu":false,"showsendonentertip":false,"suggestedreaction":null,"targetfbid":"781338735704182","targetiscomment":false,"viewercanlike":false,"viewercansubscribetopost":false,"viewerid":"0","canviewercommentinprivate":false,"allowpivotqpsonfriendstory":true,"isownerfriend":false,"isownershowpage":false,"peopleoutsidecommunityincommentnotice":null,"livegamingdisableauthorlinks":false},"streamingstate":"live"}]],["Arbiter","informSingle",[],["pagesSidePageletLoaded"]],["ReactRenderer","constructAndRenderComponentIntoComment_DO_NOT_USE",["PagesTimelineSearchBar.react","__elem_fc9f538f_0_15"],[{"constructor":{"__m":"PagesTimelineSearchBar.react"},"concurrent_UNSTABLE":false,"props":{"pageID":"300653326696613","searchQuery":"","maxLength":140},"dummyElem":{"__m":"__elem_fc9f538f_0_15"},"acrossTransitions":false,"clobberSiblings":false,"preloader":null,"bigPipeContext":{"__bigPipeContext":1},"lid":"6779882246364404230-0","nonBlockingPreloaders":null}]],["Arbiter","informSingle",[],["pagesSidePageletLoaded"]],["ExpandingCtaModern","show",["__elem_a588f507_0_3q","__elem_50a7c757_0_0","__elem_d94ac754_0_0","__elem_072b8e64_0_0"],[{"__m":"__elem_a588f507_0_3q"},{"__m":"__elem_50a7c757_0_0"},{"__m":"__elem_d94ac754_0_0"},{"__m":"__elem_072b8e64_0_0"},false,false,180,false]],["TimezoneAutoset","setInputValue",["__elem_f46f4946_0_2"],[{"__m":"__elem_f46f4946_0_2"},1578564347]],["ScreenDimensionsAutoSet","setInputValue",["__elem_f46f4946_0_3"],[{"__m":"__elem_f46f4946_0_3"}]],["LoginFormController","init",["__elem_835c633a_0_1","__elem_45d73b5d_0_0"],[{"__m":"__elem_835c633a_0_1"},{"__m":"__elem_45d73b5d_0_0"},null,true,[]]],["BrowserPrefillLogging","initContactpointFieldLogging",[],[{"contactpointFieldID":"email","serverPrefill":""}]],["BrowserPrefillLogging","initPasswordFieldLogging",[],[{"passwordFieldID":"pass"}]],["Sketch","solveAndUpdateForm",[],["819201a3d1816e1191eac189a1ba1f39","a158c67edf18a11df066de983cb14fc0",5,"login_form"]],["StickyPlaceholderInput","registerInput",["__elem_3f8a34cc_0_0"],[{"__m":"__elem_3f8a34cc_0_0"}]],["StickyPlaceholderInput","registerInput",["__elem_3f8a34cc_0_1"],[{"__m":"__elem_3f8a34cc_0_1"}]],["Arbiter","informSingle",[],["footerLoaded","","persistent"]],["IntlUtils"],["__inst_e5ad243d_0_2"],["__inst_1de146dc_0_2"],["TrackingPixel","loadWithNoReferrer",[],["https:\/\/cx.atdmt.com\/?f=AYwI_SFv_ve2D_TxecUzYcHQEcNeAXqYxey4Rkh5yh4AugitMJdn5NeWVYEjg45taYdsdZG5GD6JFW9aKqVo7RTQ&c=186377190&v=1&l=2"]],["CavalryLoggerImpl","startInstrumentation",[],[]],["NavigationMetrics","setPage",[],[{"page":"XPagesProfilePostsController","page_type":"normal","page_uri":"https:\/\/www.facebook.com\/cgtnamerica\/posts\/","serverLID":"6779882246364404230-0"}]],["DimensionTracking"],["HighContrastMode","init",[],[{"isHCM":false,"spacerImage":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y4\/r\/-PAXP-deijE.gif"}]],["ErrorLogging"],["ClickRefLogger"],["DetectBrokenProxyCache","run",[],[0,"c_user"]],["TimeSliceImpl","setLogging",[],[false,0.01]],["NavigationClickPointHandler"],["WebStorageMonster","schedule",[],[true]],["Artillery","disable",[],[]],["ArtilleryOnUntilOffLogging","disable",[],[]],["ArtilleryRequestDataCollection","disable",[],["6779882246364404230-0"]],["ScriptPathLogger","startLogging",[],[]],["TimeSpentBitArrayLogger","init",[],[]],["ArtilleryRequestDataCollection","init",[],[]],["VideoWithClickToTahoe","setUpBootloadOnHover",["__inst_c5b6bd12_0_0"],[{"__m":"__inst_c5b6bd12_0_0"}]],["VideoWithClickToTahoe","setUpBootloadOnHover",["__inst_c5b6bd12_0_1"],[{"__m":"__inst_c5b6bd12_0_1"}]],["VideoWithClickToTahoe","setUpBootloadOnHover",["__inst_c5b6bd12_0_2"],[{"__m":"__inst_c5b6bd12_0_2"}]],["VideoWithClickToTahoe","setUpBootloadOnHover",["__inst_c5b6bd12_0_3"],[{"__m":"__inst_c5b6bd12_0_3"}]],["VideoWithClickToTahoe","setUpBootloadOnHover",["__inst_c5b6bd12_0_4"],[{"__m":"__inst_c5b6bd12_0_4"}]],["VideoWithClickToTahoe","setUpBootloadOnHover",["__inst_c5b6bd12_0_5"],[{"__m":"__inst_c5b6bd12_0_5"}]],["VideoWithClickToTahoe","setUpBootloadOnHover",["__inst_c5b6bd12_0_6"],[{"__m":"__inst_c5b6bd12_0_6"}]],["VideoWithClickToTahoe","setUpBootloadOnHover",["__inst_c5b6bd12_0_7"],[{"__m":"__inst_c5b6bd12_0_7"}]],["VideoWithClickToTahoe","setUpBootloadOnHover",["__inst_c5b6bd12_0_8"],[{"__m":"__inst_c5b6bd12_0_8"}]],["VideoWithClickToTahoe","setUpBootloadOnHover",["__inst_c5b6bd12_0_9"],[{"__m":"__inst_c5b6bd12_0_9"}]],["VideoWithClickToTahoe","setUpBootloadOnHover",["__inst_c5b6bd12_0_a"],[{"__m":"__inst_c5b6bd12_0_a"}]],["VideoWithClickToTahoe","setUpBootloadOnHover",["__inst_c5b6bd12_0_b"],[{"__m":"__inst_c5b6bd12_0_b"}]],["VideoWithClickToTahoe","setUpBootloadOnHover",["__inst_c5b6bd12_0_c"],[{"__m":"__inst_c5b6bd12_0_c"}]],["VideoWithClickToTahoe","setUpBootloadOnHover",["__inst_c5b6bd12_0_d"],[{"__m":"__inst_c5b6bd12_0_d"}]],["VideoWithClickToTahoe","setUpBootloadOnHover",["__inst_c5b6bd12_0_e"],[{"__m":"__inst_c5b6bd12_0_e"}]],["VideoWithClickToTahoe","setUpBootloadOnHover",["__inst_c5b6bd12_0_f"],[{"__m":"__inst_c5b6bd12_0_f"}]],["BladeRunnerClient"],["SkywalkerUtils"],["Banzai"],["KeyframesRenderer"],["KeyframesEnvironment"],["FBKeyframesLoggedSession"],["KeyframesAssetDecoder"],["StoriesViewerRoot.react"],["CometToast.react"],["WebDevicePerfInfoLogging"],["StoriesSuspenseCardOptionMenu.react"],["CometConfirmationDialogImpl.react"],["StoriesViewerSuspenseRoot.react"],["StoriesViewerSingleBucketRoot.react"],["StoriesArchiveRoot.react"],["CometToasterView_DO_NOT_USE.react"],["MqttLongPollingRunner"],["PresenceStatus"],["UFIVideoPlayerRegistry"],["UFICreatorInfo.react"],["UFI2FeedbackReactMutation"],["UFI2TypingIndicator.react"],["UFI2CreateCommentSubscription"],["UFI2ActorPresenceProvider.react"],["UFI2UnhideCommentMutation"],["UFI2ReactionsMenu"],["UFI2BanActorMutation"],["UFI2ViewOptionsSelectorImpl.react"],["StoriesCardOptionMenu.react"],["UFI2TypingSubscription"],["GamesVideoDeleteCommentDialog.react"],["GamesVideoModerationRulesNux.react"],["GamesVideoCommentRemovedDialog.react"],["__inst_41781d56_0_0"],["Hovercard","setDialog",["__inst_41781d56_0_0"],["u_0_ef",{"__m":"__inst_41781d56_0_0"}]]],"contexts":[[{"__m":"__elem_a588f507_0_7"},true],[{"__m":"__elem_a588f507_0_8"},true],[{"__m":"__elem_9f5fac15_0_2"},false],[{"__m":"__elem_9f5fac15_0_3"},false],[{"__m":"__elem_9f5fac15_0_4"},false],[{"__m":"__elem_9f5fac15_0_5"},false],[{"__m":"__elem_9f5fac15_0_6"},false],[{"__m":"__elem_9f5fac15_0_7"},false],[{"__m":"__elem_9f5fac15_0_8"},false],[{"__m":"__elem_9f5fac15_0_9"},false],[{"__m":"__elem_9f5fac15_0_a"},false]],"pre_display_requires":[["AsyncData","blockDisplayUntilLoaded",["__inst_8a751efa_0_0"],[{"preloader":{"__m":"__inst_8a751efa_0_0"},"bigPipeContext":{"__bigPipeContext":1}}],2],["AsyncData","blockDisplayUntilLoaded",["__inst_8a751efa_0_1"],[{"preloader":{"__m":"__inst_8a751efa_0_1"},"bigPipeContext":{"__bigPipeContext":1}}],2],["AsyncData","blockDisplayUntilLoaded",["__inst_8a751efa_0_2"],[{"preloader":{"__m":"__inst_8a751efa_0_2"},"bigPipeContext":{"__bigPipeContext":1}}],2],["RelayPrefetchedStreamCache","next",[],["adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafb8c6469721707411",{"__bbox":{"result":{"data":{"feedback":{"id":"ZmVlZGJhY2s6MjY2MTg0NjMzNzI0Mzk1NQ==","is_eligible_for_real_time_updates":false,"subscription_target_id":"2661846337243955","owning_profile":{"__typename":"Page","id":"300653326696613"},"num_localized_comment_orderings":0,"comment_count":{"total_count":0},"i18n_comment_count":"0","url":"https:\/\/www.facebook.com\/cgtnamerica\/posts\/2661846337243955","i18n_reaction_count":"13","important_reactors":{"nodes":[]},"reaction_count":{"count":13},"viewer_actor":null,"viewer_feedback_reaction_info":null,"i18n_share_count":"0","share_count":{"count":0},"share_fbid":"2661846337243955","reactors":{"count":13},"top_reactions":{"edges":[{"reaction_count":11,"node":{"key":1,"id":"1635855486666999","localized_name":"J\u2019aime","reaction_type":"LIKE"},"i18n_reaction_count":"11"},{"reaction_count":1,"node":{"key":3,"id":"478547315650144","localized_name":"Wouah","reaction_type":"WOW"},"i18n_reaction_count":"1"},{"reaction_count":1,"node":{"key":7,"id":"908563459236466","localized_name":"Triste","reaction_type":"SORRY"},"i18n_reaction_count":"1"}]},"associated_video":null,"video_view_count":null,"video_view_count_reduced":null,"total_video_posts":null,"video_post_view_count":null,"page_private_reply":null,"seen_by_count":{"count":null},"comment_share_context":null,"political_figure_data":null,"associated_group":null,"display_comments_count":{"count":0},"comments_disabled_notice":{"ranges":[],"text":"Les commentaires ont \u00e9t\u00e9 d\u00e9sactiv\u00e9s pour cette publication."},"can_viewer_comment":false,"comment_composer_placeholder":"Votre commentaire...","display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"is_initially_expanded":true,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":true,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}},"can_viewer_react":false,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"feedback_typers":{"other_count":0},"default_comment_ordering":"toplevel","localized_comment_orderings":[]}},"extensions":{"is_final":true}},"sequence_number":0,"variables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjY2MTg0NjMzNzI0Mzk1NQ==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661846337243955","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"incremental_chunks":[]}}],2],["AsyncData","blockDisplayUntilLoaded",["__inst_8a751efa_0_3"],[{"preloader":{"__m":"__inst_8a751efa_0_3"},"bigPipeContext":{"__bigPipeContext":1}}],2],["AsyncData","blockDisplayUntilLoaded",["__inst_8a751efa_0_4"],[{"preloader":{"__m":"__inst_8a751efa_0_4"},"bigPipeContext":{"__bigPipeContext":1}}],2],["AsyncData","blockDisplayUntilLoaded",["__inst_8a751efa_0_5"],[{"preloader":{"__m":"__inst_8a751efa_0_5"},"bigPipeContext":{"__bigPipeContext":1}}],2],["AsyncData","blockDisplayUntilLoaded",["__inst_8a751efa_0_6"],[{"preloader":{"__m":"__inst_8a751efa_0_6"},"bigPipeContext":{"__bigPipeContext":1}}],2],["RelayPrefetchedStreamCache","next",[],["adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafb8e5249348664193",{"__bbox":{"result":{"data":{"feedback":{"id":"ZmVlZGJhY2s6MjY2MjEzNTMwNzIxNTA1OA==","is_eligible_for_real_time_updates":false,"subscription_target_id":"2662135307215058","owning_profile":{"__typename":"Page","id":"300653326696613"},"num_localized_comment_orderings":3,"comment_count":{"total_count":1},"i18n_comment_count":"1","url":"https:\/\/www.facebook.com\/cgtnamerica\/posts\/2662135307215058","i18n_reaction_count":"33","important_reactors":{"nodes":[]},"reaction_count":{"count":33},"viewer_actor":null,"viewer_feedback_reaction_info":null,"i18n_share_count":"3","share_count":{"count":3},"share_fbid":"2662135307215058","reactors":{"count":33},"top_reactions":{"edges":[{"reaction_count":31,"node":{"key":1,"id":"1635855486666999","localized_name":"J\u2019aime","reaction_type":"LIKE"},"i18n_reaction_count":"31"},{"reaction_count":2,"node":{"key":4,"id":"115940658764963","localized_name":"Haha","reaction_type":"HAHA"},"i18n_reaction_count":"2"}]},"associated_video":null,"video_view_count":null,"video_view_count_reduced":null,"total_video_posts":null,"video_post_view_count":null,"page_private_reply":null,"seen_by_count":{"count":null},"comment_share_context":null,"political_figure_data":null,"associated_group":null,"display_comments_count":{"count":1},"comments_disabled_notice":{"ranges":[],"text":"Les commentaires ont \u00e9t\u00e9 d\u00e9sactiv\u00e9s pour cette publication."},"can_viewer_comment":false,"comment_composer_placeholder":"Votre commentaire...","display_comments":{"after_count":0,"before_count":0,"count":1,"edges":[{"node":{"created_time":1578543544,"id":"Y29tbWVudDoyNjYyMTM1MzA3MjE1MDU4XzI2NjI0MzQ5NzcxODUwOTE=","legacy_fbid":"2662434977185091","author":{"__typename":"User","id":"100002715437957","name":"William Alencar Barros","profile_picture_depth_0":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t31.0-1\/cp0\/c0.0.32.32a\/p32x32\/10603904_522042307896279_7621526685029450203_o.jpg?_nc_cat=105&_nc_ohc=3Lrb08Jw0lEAQnDg5XTEoHKPg8pyrZNCM1zucpNxr7VJ8Xr6PnApV7QOQ&_nc_ht=scontent-cdg2-1.xx&oh=b40c15071ccbee4667e5523168decce7&oe=5E949952"},"profile_picture_depth_1":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t31.0-1\/cp0\/c0.0.24.24a\/p24x24\/10603904_522042307896279_7621526685029450203_o.jpg?_nc_cat=105&_nc_ohc=3Lrb08Jw0lEAQnDg5XTEoHKPg8pyrZNCM1zucpNxr7VJ8Xr6PnApV7QOQ&_nc_ht=scontent-cdg2-1.xx&oh=b896e5abf56cf4df2803333f0d5a306c&oe=5E94B309"},"www_url":"https:\/\/www.facebook.com\/william.barros.963","url":"https:\/\/www.facebook.com\/william.barros.963","is_verified":false,"short_name":"William"},"is_author_weak_reference":false,"spam_display_mode":"none","attachments":[{"style_list":["share","fallback"],"url":"https:\/\/l.facebook.com\/l.php?u=https\u00253A\u00252F\u00252Fwww.youtube.com\u00252Fwatch\u00253Fv\u00253DsP1asrawlhI&h=AT1X6qAERD3nxGJskzIhLRpAaBXXKyzTDNsKGvHq-hcr4rNBLouvuB9PAu1bMD-YSAeL3esQbiR80ZyZZz591-kckGc_buLN0iIwMP16xiTAiXu_8nfaNUETbPA87p3xZRazHAdkgN1w-247PAMZ3T2AK60&s=1","source":{"text":"youtube.com"},"media":{"__typename":"GenericAttachmentMedia","animated_image_attribution":null,"id":"934473416664197","gifAnimatedImage_396":null,"image_396":{"height":297,"uri":"https:\/\/external-cdg2-1.xx.fbcdn.net\/safe_image.php?d=AQBS21NuzeLCDwV9&w=396&h=297&url=https\u00253A\u00252F\u00252Fi.ytimg.com\u00252Fvi\u00252FsP1asrawlhI\u00252Fhqdefault.jpg&_nc_hash=AQBj1H15nxd2QIG1","width":396},"webPAnimatedImage_396":null,"fallback_image":{"height":98,"uri":"https:\/\/external-cdg2-1.xx.fbcdn.net\/safe_image.php?d=AQDXagkPxlVDqxFp&w=98&h=98&url=https\u00253A\u00252F\u00252Fi.ytimg.com\u00252Fvi\u00252FsP1asrawlhI\u00252Fhqdefault.jpg&cfs=1&_nc_hash=AQA8kDBvh9M4Sz_O","width":98},"is_playable":true},"target":{"__typename":"ExternalUrl","id":"226547524203272:2307086599391832","url":"https:\/\/l.facebook.com\/l.php?u=https\u00253A\u00252F\u00252Fwww.youtube.com\u00252Fwatch\u00253Fv\u00253DsP1asrawlhI&h=AT1X6qAERD3nxGJskzIhLRpAaBXXKyzTDNsKGvHq-hcr4rNBLouvuB9PAu1bMD-YSAeL3esQbiR80ZyZZz591-kckGc_buLN0iIwMP16xiTAiXu_8nfaNUETbPA87p3xZRazHAdkgN1w-247PAMZ3T2AK60&s=1"},"style_infos":[{"__typename":"ExternalShareAttachmentStyleInfo"}],"title_with_entities":{"text":"Ensiferum - Tumman Virran Taa \/ The Longest Journey (Heathen Throne Part II)"},"action_links":[],"tracking":"{}","sticker":{"__typename":"GenericAttachmentMedia","id":"934473416664197"},"style_type_renderer_blue":null}],"attached_story":null,"parent_post_story":{"id":"UzpfSTMwMDY1MzMyNjY5NjYxMzoyNjYyMTM1MzA3MjE1MDU4"},"group_comment_info":null,"legacy_token":"2662135307215058_2662434977185091","comment_menu_tooltip":null,"comment_menu_items":[],"is_author_banned_by_content_owner":false,"parent_feedback":{"id":"ZmVlZGJhY2s6MjY2MjEzNTMwNzIxNTA1OA==","viewer_acts_as_page":null,"can_viewer_ban_user":false},"create_detailed_report_uri":"https:\/\/www.facebook.com\/in_app_escalation\/?context=\u00257B\u002522session_id\u002522\u00253A\u0025228dac9c12-fe06-4a06-baed-4887fee1893e\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522feed\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522comment\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u0025222662434977185091\u002522\u00257D","us_structured_reporting_enabled":false,"can_viewer_share":false,"chat_to_buy":null,"edit_history":{"count":0},"feedback":{"id":"ZmVlZGJhY2s6MjY2MjEzNTMwNzIxNTA1OF8yNjYyNDM0OTc3MTg1MDkx","viewer_feedback_reaction_info":null,"viewer_actor":null,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"associated_video":null,"top_reactions":{"edges":[]},"reactors":{"count":0,"count_reduced":"0"},"page_private_reply":null,"can_viewer_react":false,"subscription_target_id":"2662434977185091","comment_composer_placeholder":"R\u00e9pondez...","can_viewer_comment":false,"comment_count":{"total_count":0},"comment_share_context":null,"share_fbid":"2662434977185091","political_figure_data":null,"associated_group":null,"display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"highlighted_comments":[],"is_initially_expanded":false,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":false,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}}},"page_admin_actor_info":null,"private_reply_context":null,"preferred_body":{"__typename":"TextWithEntities","translation_type":"ORIGINAL","delight_ranges":[],"ranges":[{"__typename":"EntityAtRange","entity":{"__typename":"ExternalUrl","url":"https:\/\/l.facebook.com\/l.php?u=https\u00253A\u00252F\u00252Fwww.youtube.com\u00252Fwatch\u00253Fv\u00253DsP1asrawlhI&h=AT1TDKvN7hJifHPUW5az7rQ4PCZIBt9Y2w8P7bBMMYYGJzO28-LEqzn_ssoHfsEAUy40FDd2Q907scZFHS1HE14Adh3W1TYmin3jVz5nFrCrwNKUOAAhTc-jBvZ3mJo7hcH4hYD-SAUM7GM&s=1","id":"NjQyMTgzOTU5MjA4MTA3Omh0dHBzXGEvL3d3dy55b3V0dWJlLmNvbS93YXRjaD92PXNQMWFzcmF3bGhJOjo6Og==","can_skip_redirect":true},"entity_is_weak_reference":false,"length":43,"offset":92}],"text":"Can the Saudi accept Euros, Rublos, Yens, etc for its oil? why do they only accept Dollars? https:\/\/www.youtube.com\/watch?v=sP1asrawlhI"},"translatability_for_viewer":{"source_dialect_name":"Anglais"},"translation_available_for_viewer":false,"url":"https:\/\/www.facebook.com\/cgtnamerica\/posts\/2662135307215058?comment_id=2662434977185091","identity_badges_web":[],"can_see_constituent_badge_upsell":false,"has_constituent_badge":false,"sub_reply_parent_preview_context":null,"can_viewer_disable_preview":false,"is_hidden_by_content_owner":null,"www_layout_renderer":null,"sub_reply_parent_above_comment_author_context":null,"body":{"text":"Can the Saudi accept Euros, Rublos, Yens, etc for its oil? why do they only accept Dollars? https:\/\/www.youtube.com\/watch?v=sP1asrawlhI","ranges":[{"__typename":"EntityAtRange","entity":{"__typename":"ExternalUrl","id":"NjQyMTgzOTU5MjA4MTA3Omh0dHBzXGEvL3d3dy55b3V0dWJlLmNvbS93YXRjaD92PXNQMWFzcmF3bGhJOjo6Og=="},"entity_is_weak_reference":false,"length":43,"offset":92}]},"is_markdown_enabled":false,"can_comment":{"can_viewer_comment":false,"id":"ZmVlZGJhY2s6MjY2MjEzNTMwNzIxNTA1OF8yNjYyNDM0OTc3MTg1MDkx"},"inline_survey_config":null,"reply_parent_comment":null,"flat_threading_depth":0,"__typename":"Comment"},"cursor":"AQHR0GsMSTboDuLhno6J12sYV8WlGW7gHw3yjktODjx-vyyEk05GIHLSPP0RKxlMTSLgulj3swmzMY-DOdQoOfA5Hg"}],"is_initially_expanded":true,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":true,"comment_order":"TOPLEVEL","page_info":{"end_cursor":"AQHRwk1wO2p5Fw_3iyzqWIHcfQNWUHWoQsokFXdesQv7h2jV58Gbu0tof9H45ZtcVbYcpGxNsfbhb0I24Ljv8L1lNw","has_next_page":false,"has_previous_page":false,"start_cursor":"AQHRwk1wO2p5Fw_3iyzqWIHcfQNWUHWoQsokFXdesQv7h2jV58Gbu0tof9H45ZtcVbYcpGxNsfbhb0I24Ljv8L1lNw"}},"can_viewer_react":false,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"feedback_typers":{"other_count":0},"default_comment_ordering":"toplevel","localized_comment_orderings":[{"description":"Affiche tous les commentaires, les plus anciens apparaissant en premier.","title":"Les plus anciens","value":"TOPLEVEL"},{"description":"Affiche les commentaires d\u2019amis et ceux ayant entra\u00een\u00e9 le plus de r\u00e9actions en premier.","title":"Les plus pertinents","value":"RANKED_THREADED"},{"description":"Affiche tous les commentaires, y compris ceux \u00e9tant potentiellement ind\u00e9sirables. Les commentaires les plus pertinents appara\u00eetront en premier.","title":"Tous les commentaires","value":"RANKED_UNFILTERED"}]}},"extensions":{"is_final":true}},"sequence_number":0,"variables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjY2MjEzNTMwNzIxNTA1OA==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2662135307215058","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"incremental_chunks":[]}}],2],["AsyncData","blockDisplayUntilLoaded",["__inst_8a751efa_0_7"],[{"preloader":{"__m":"__inst_8a751efa_0_7"},"bigPipeContext":{"__bigPipeContext":1}}],2],["AsyncData","blockDisplayUntilLoaded",["__inst_8a751efa_0_8"],[{"preloader":{"__m":"__inst_8a751efa_0_8"},"bigPipeContext":{"__bigPipeContext":1}}],2],["AsyncData","blockDisplayUntilLoaded",["__inst_8a751efa_0_9"],[{"preloader":{"__m":"__inst_8a751efa_0_9"},"bigPipeContext":{"__bigPipeContext":1}}],2],["AsyncData","blockDisplayUntilLoaded",["__inst_8a751efa_0_a"],[{"preloader":{"__m":"__inst_8a751efa_0_a"},"bigPipeContext":{"__bigPipeContext":1}}],2],["AsyncData","blockDisplayUntilLoaded",["__inst_8a751efa_0_b"],[{"preloader":{"__m":"__inst_8a751efa_0_b"},"bigPipeContext":{"__bigPipeContext":1}}],2],["AsyncData","blockDisplayUntilLoaded",["__inst_8a751efa_0_c"],[{"preloader":{"__m":"__inst_8a751efa_0_c"},"bigPipeContext":{"__bigPipeContext":1}}],2],["AsyncData","blockDisplayUntilLoaded",["__inst_8a751efa_0_d"],[{"preloader":{"__m":"__inst_8a751efa_0_d"},"bigPipeContext":{"__bigPipeContext":1}}],2],["AsyncData","blockDisplayUntilLoaded",["__inst_8a751efa_0_e"],[{"preloader":{"__m":"__inst_8a751efa_0_e"},"bigPipeContext":{"__bigPipeContext":1}}],2],["RelayPrefetchedStreamCache","next",[],["adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafb901ff5e02215040",{"__bbox":{"result":{"data":{"feedback":{"id":"ZmVlZGJhY2s6MjY2MTA5NTMxNzMxOTA1Nw==","is_eligible_for_real_time_updates":false,"subscription_target_id":"2661095317319057","owning_profile":{"__typename":"Page","id":"300653326696613"},"num_localized_comment_orderings":3,"comment_count":{"total_count":1},"i18n_comment_count":"1","url":"https:\/\/www.facebook.com\/cgtnamerica\/posts\/2661095317319057","i18n_reaction_count":"14","important_reactors":{"nodes":[]},"reaction_count":{"count":14},"viewer_actor":null,"viewer_feedback_reaction_info":null,"i18n_share_count":"6","share_count":{"count":6},"share_fbid":"2661095317319057","reactors":{"count":14},"top_reactions":{"edges":[{"reaction_count":13,"node":{"key":1,"id":"1635855486666999","localized_name":"J\u2019aime","reaction_type":"LIKE"},"i18n_reaction_count":"13"},{"reaction_count":1,"node":{"key":7,"id":"908563459236466","localized_name":"Triste","reaction_type":"SORRY"},"i18n_reaction_count":"1"}]},"associated_video":null,"video_view_count":null,"video_view_count_reduced":null,"total_video_posts":null,"video_post_view_count":null,"page_private_reply":null,"seen_by_count":{"count":null},"comment_share_context":null,"political_figure_data":null,"associated_group":null,"display_comments_count":{"count":1},"comments_disabled_notice":{"ranges":[],"text":"Les commentaires ont \u00e9t\u00e9 d\u00e9sactiv\u00e9s pour cette publication."},"can_viewer_comment":false,"comment_composer_placeholder":"Votre commentaire...","display_comments":{"after_count":0,"before_count":0,"count":1,"edges":[{"node":{"created_time":1578533394,"id":"Y29tbWVudDoyNjYxMDk1MzE3MzE5MDU3XzI2NjIxOTU3NzM4NzU2Nzg=","legacy_fbid":"2662195773875678","author":{"__typename":"User","id":"100007361047519","name":"Zafarullah Syed","profile_picture_depth_0":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/cp0\/p32x32\/67697817_2384472298474782_5369965698581790720_o.jpg?_nc_cat=102&_nc_ohc=yalj6e8ZKF0AQko6EzQhAdYha6ps8TE_DKrRo2f8Op7B5alVuykzF3ihg&_nc_ht=scontent-cdg2-1.xx&oh=53ecf99e9b6a384ac7663b83185ae467&oe=5E93BAE6"},"profile_picture_depth_1":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/cp0\/p24x24\/67697817_2384472298474782_5369965698581790720_o.jpg?_nc_cat=102&_nc_ohc=yalj6e8ZKF0AQko6EzQhAdYha6ps8TE_DKrRo2f8Op7B5alVuykzF3ihg&_nc_ht=scontent-cdg2-1.xx&oh=c3ae7ee3b64d628bdd048fb2c7071daa&oe=5EB1BA01"},"www_url":"https:\/\/www.facebook.com\/zafarullah.syed.7","url":"https:\/\/www.facebook.com\/zafarullah.syed.7","is_verified":false,"short_name":"Zafarullah"},"is_author_weak_reference":false,"spam_display_mode":"none","attachments":[],"attached_story":null,"parent_post_story":{"id":"UzpfSTMwMDY1MzMyNjY5NjYxMzoyNjYxMDk1MzE3MzE5MDU3"},"group_comment_info":null,"legacy_token":"2661095317319057_2662195773875678","comment_menu_tooltip":null,"comment_menu_items":[],"is_author_banned_by_content_owner":false,"parent_feedback":{"id":"ZmVlZGJhY2s6MjY2MTA5NTMxNzMxOTA1Nw==","viewer_acts_as_page":null,"can_viewer_ban_user":false},"create_detailed_report_uri":"https:\/\/www.facebook.com\/in_app_escalation\/?context=\u00257B\u002522session_id\u002522\u00253A\u0025227adb4a8a-2cab-4a9a-8f80-71add39b13b3\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522feed\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522comment\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u0025222662195773875678\u002522\u00257D","us_structured_reporting_enabled":false,"can_viewer_share":false,"chat_to_buy":null,"edit_history":{"count":0},"feedback":{"id":"ZmVlZGJhY2s6MjY2MTA5NTMxNzMxOTA1N18yNjYyMTk1NzczODc1Njc4","viewer_feedback_reaction_info":null,"viewer_actor":null,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"associated_video":null,"top_reactions":{"edges":[]},"reactors":{"count":0,"count_reduced":"0"},"page_private_reply":null,"can_viewer_react":false,"subscription_target_id":"2662195773875678","comment_composer_placeholder":"R\u00e9pondez...","can_viewer_comment":false,"comment_count":{"total_count":0},"comment_share_context":null,"share_fbid":"2662195773875678","political_figure_data":null,"associated_group":null,"display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"highlighted_comments":[],"is_initially_expanded":false,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":false,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}}},"page_admin_actor_info":null,"private_reply_context":null,"preferred_body":{"__typename":"TextWithEntities","translation_type":"ORIGINAL","delight_ranges":[],"ranges":[],"text":"After all it was a Boeing 737"},"translatability_for_viewer":{"source_dialect_name":"Anglais"},"translation_available_for_viewer":false,"url":"https:\/\/www.facebook.com\/cgtnamerica\/posts\/2661095317319057?comment_id=2662195773875678","identity_badges_web":[],"can_see_constituent_badge_upsell":false,"has_constituent_badge":false,"sub_reply_parent_preview_context":null,"can_viewer_disable_preview":false,"is_hidden_by_content_owner":null,"www_layout_renderer":null,"sub_reply_parent_above_comment_author_context":null,"body":{"text":"After all it was a Boeing 737","ranges":[]},"is_markdown_enabled":false,"can_comment":{"can_viewer_comment":false,"id":"ZmVlZGJhY2s6MjY2MTA5NTMxNzMxOTA1N18yNjYyMTk1NzczODc1Njc4"},"inline_survey_config":null,"reply_parent_comment":null,"flat_threading_depth":0,"__typename":"Comment"},"cursor":"AQHRnNUZK93o1U5bHgycxUR8SaEpmWqjt0ANRyigfFstgLJFCLY7HF0BA8OPprRF6C_vWuI0caRxE_6IG7IumhiRLA"}],"is_initially_expanded":true,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":true,"comment_order":"TOPLEVEL","page_info":{"end_cursor":"AQHRE9mgs-BEESMSA75YAgDglNj_WH5w-BwmgGjEet5iCFwObUghkSouNF0tNNVAlJuZSNOieADjPOri97njd-F2pA","has_next_page":false,"has_previous_page":false,"start_cursor":"AQHRE9mgs-BEESMSA75YAgDglNj_WH5w-BwmgGjEet5iCFwObUghkSouNF0tNNVAlJuZSNOieADjPOri97njd-F2pA"}},"can_viewer_react":false,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"feedback_typers":{"other_count":0},"default_comment_ordering":"toplevel","localized_comment_orderings":[{"description":"Affiche tous les commentaires, les plus anciens apparaissant en premier.","title":"Les plus anciens","value":"TOPLEVEL"},{"description":"Affiche les commentaires d\u2019amis et ceux ayant entra\u00een\u00e9 le plus de r\u00e9actions en premier.","title":"Les plus pertinents","value":"RANKED_THREADED"},{"description":"Affiche tous les commentaires, y compris ceux \u00e9tant potentiellement ind\u00e9sirables. Les commentaires les plus pertinents appara\u00eetront en premier.","title":"Tous les commentaires","value":"RANKED_UNFILTERED"}]}},"extensions":{"is_final":true}},"sequence_number":0,"variables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjY2MTA5NTMxNzMxOTA1Nw==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661095317319057","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"incremental_chunks":[]}}],2],["RelayPrefetchedStreamCache","next",[],["adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafbcb76b5856587871",{"__bbox":{"result":{"data":{"feedback":{"id":"ZmVlZGJhY2s6NDczMTE3ODMzNjA2MjI0","is_eligible_for_real_time_updates":false,"subscription_target_id":"473117833606224","owning_profile":{"__typename":"Page","id":"300653326696613"},"num_localized_comment_orderings":0,"comment_count":{"total_count":0},"i18n_comment_count":"0","url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/473117833606224\/","i18n_reaction_count":"31","important_reactors":{"nodes":[]},"reaction_count":{"count":31},"viewer_actor":null,"viewer_feedback_reaction_info":null,"i18n_share_count":"4","share_count":{"count":4},"share_fbid":"473117833606224","reactors":{"count":31},"top_reactions":{"edges":[{"reaction_count":27,"node":{"key":1,"id":"1635855486666999","localized_name":"J\u2019aime","reaction_type":"LIKE"},"i18n_reaction_count":"27"},{"reaction_count":2,"node":{"key":2,"id":"1678524932434102","localized_name":"J\u2019adore","reaction_type":"LOVE"},"i18n_reaction_count":"2"},{"reaction_count":2,"node":{"key":3,"id":"478547315650144","localized_name":"Wouah","reaction_type":"WOW"},"i18n_reaction_count":"2"}]},"associated_video":{"is_live_streaming":false,"is_profile_video":false,"id":"473117833606224"},"video_view_count":499,"video_view_count_reduced":"499","total_video_posts":1,"video_post_view_count":499,"page_private_reply":null,"seen_by_count":{"count":null},"comment_share_context":null,"political_figure_data":null,"associated_group":null,"display_comments_count":{"count":0},"comments_disabled_notice":{"ranges":[],"text":"Les commentaires ont \u00e9t\u00e9 d\u00e9sactiv\u00e9s pour cette publication."},"can_viewer_comment":false,"comment_composer_placeholder":"Votre commentaire...","display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"is_initially_expanded":true,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":true,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}},"can_viewer_react":false,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"feedback_typers":{"other_count":0},"default_comment_ordering":"toplevel","localized_comment_orderings":[]}},"extensions":{"is_final":true}},"sequence_number":0,"variables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6NDczMTE3ODMzNjA2MjI0","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661869580574964","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"incremental_chunks":[]}}],2],["RelayPrefetchedStreamCache","next",[],["adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafc1f4618450142931",{"__bbox":{"result":{"data":{"feedback":{"id":"ZmVlZGJhY2s6NDc2MTMyMDE2NDI5Nzg1","is_eligible_for_real_time_updates":false,"subscription_target_id":"476132016429785","owning_profile":{"__typename":"Page","id":"300653326696613"},"num_localized_comment_orderings":0,"comment_count":{"total_count":0},"i18n_comment_count":"0","url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/476132016429785\/","i18n_reaction_count":"27","important_reactors":{"nodes":[]},"reaction_count":{"count":27},"viewer_actor":null,"viewer_feedback_reaction_info":null,"i18n_share_count":"9","share_count":{"count":9},"share_fbid":"476132016429785","reactors":{"count":27},"top_reactions":{"edges":[{"reaction_count":23,"node":{"key":1,"id":"1635855486666999","localized_name":"J\u2019aime","reaction_type":"LIKE"},"i18n_reaction_count":"23"},{"reaction_count":4,"node":{"key":3,"id":"478547315650144","localized_name":"Wouah","reaction_type":"WOW"},"i18n_reaction_count":"4"}]},"associated_video":{"is_live_streaming":false,"is_profile_video":false,"id":"476132016429785"},"video_view_count":779,"video_view_count_reduced":"779","total_video_posts":1,"video_post_view_count":779,"page_private_reply":null,"seen_by_count":{"count":null},"comment_share_context":null,"political_figure_data":null,"associated_group":null,"display_comments_count":{"count":0},"comments_disabled_notice":{"ranges":[],"text":"Les commentaires ont \u00e9t\u00e9 d\u00e9sactiv\u00e9s pour cette publication."},"can_viewer_comment":false,"comment_composer_placeholder":"Votre commentaire...","display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"is_initially_expanded":true,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":true,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}},"can_viewer_react":false,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"feedback_typers":{"other_count":0},"default_comment_ordering":"toplevel","localized_comment_orderings":[]}},"extensions":{"is_final":true}},"sequence_number":0,"variables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6NDc2MTMyMDE2NDI5Nzg1","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661853320576590","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"incremental_chunks":[]}}],2],["AsyncData","blockDisplayUntilLoaded",["__inst_8a751efa_0_f"],[{"preloader":{"__m":"__inst_8a751efa_0_f"},"bigPipeContext":{"__bigPipeContext":1}}],2],["AsyncData","blockDisplayUntilLoaded",["__inst_8a751efa_0_g"],[{"preloader":{"__m":"__inst_8a751efa_0_g"},"bigPipeContext":{"__bigPipeContext":1}}],2],["AsyncData","blockDisplayUntilLoaded",["__inst_8a751efa_0_h"],[{"preloader":{"__m":"__inst_8a751efa_0_h"},"bigPipeContext":{"__bigPipeContext":1}}],2],["RelayPrefetchedStreamCache","next",[],["adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafc24c495e44771765",{"__bbox":{"result":{"data":{"feedback":{"id":"ZmVlZGJhY2s6MjY2MTA5NDMyMzk4NTgyMw==","is_eligible_for_real_time_updates":false,"subscription_target_id":"2661094323985823","owning_profile":{"__typename":"Page","id":"300653326696613"},"num_localized_comment_orderings":3,"comment_count":{"total_count":1},"i18n_comment_count":"1","url":"https:\/\/www.facebook.com\/cgtnamerica\/posts\/2661094323985823","i18n_reaction_count":"22","important_reactors":{"nodes":[]},"reaction_count":{"count":22},"viewer_actor":null,"viewer_feedback_reaction_info":null,"i18n_share_count":"4","share_count":{"count":4},"share_fbid":"2661094323985823","reactors":{"count":22},"top_reactions":{"edges":[{"reaction_count":21,"node":{"key":1,"id":"1635855486666999","localized_name":"J\u2019aime","reaction_type":"LIKE"},"i18n_reaction_count":"21"},{"reaction_count":1,"node":{"key":7,"id":"908563459236466","localized_name":"Triste","reaction_type":"SORRY"},"i18n_reaction_count":"1"}]},"associated_video":{"is_live_streaming":false,"is_profile_video":false,"id":"764719224037291"},"video_view_count":null,"video_view_count_reduced":null,"total_video_posts":null,"video_post_view_count":null,"page_private_reply":null,"seen_by_count":{"count":null},"comment_share_context":null,"political_figure_data":null,"associated_group":null,"display_comments_count":{"count":1},"comments_disabled_notice":{"ranges":[],"text":"Les commentaires ont \u00e9t\u00e9 d\u00e9sactiv\u00e9s pour cette publication."},"can_viewer_comment":false,"comment_composer_placeholder":"Votre commentaire...","display_comments":{"after_count":0,"before_count":0,"count":1,"edges":[{"node":{"created_time":1578495312,"id":"Y29tbWVudDoyNjYxMDk0MzIzOTg1ODIzXzI2NjEyMDM0OTczMDgyMzk=","legacy_fbid":"2661203497308239","author":{"__typename":"User","id":"100002574197319","name":"Michael Johnson","profile_picture_depth_0":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/cp0\/p32x32\/71693202_2712016655560781_3105528553513418752_n.jpg?_nc_cat=102&_nc_ohc=PBnO4zFAWQEAQme7wO0Z1A87pZg141g6PPPqC5-5i9q5P-OtVCuqKQrkQ&_nc_ht=scontent-cdg2-1.xx&oh=fe6d3a12f5fc0385f159ae3f3b273354&oe=5EAD3642"},"profile_picture_depth_1":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/cp0\/p24x24\/71693202_2712016655560781_3105528553513418752_n.jpg?_nc_cat=102&_nc_ohc=PBnO4zFAWQEAQme7wO0Z1A87pZg141g6PPPqC5-5i9q5P-OtVCuqKQrkQ&_nc_ht=scontent-cdg2-1.xx&oh=34849ff8457801f6ed90897d8866babb&oe=5E9024A5"},"www_url":null,"url":null,"is_verified":false,"short_name":"Michael"},"is_author_weak_reference":false,"spam_display_mode":"none","attachments":[],"attached_story":null,"parent_post_story":{"id":"UzpfSTMwMDY1MzMyNjY5NjYxMzoyNjYxMDk0MzIzOTg1ODIz"},"group_comment_info":null,"legacy_token":"2661094323985823_2661203497308239","comment_menu_tooltip":null,"comment_menu_items":[],"is_author_banned_by_content_owner":false,"parent_feedback":{"id":"ZmVlZGJhY2s6MjY2MTA5NDMyMzk4NTgyMw==","viewer_acts_as_page":null,"can_viewer_ban_user":false},"create_detailed_report_uri":"https:\/\/www.facebook.com\/in_app_escalation\/?context=\u00257B\u002522session_id\u002522\u00253A\u002522cba0950e-4005-4ab7-9b0d-6901156752f3\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522feed\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522comment\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u0025222661203497308239\u002522\u00257D","us_structured_reporting_enabled":false,"can_viewer_share":false,"chat_to_buy":null,"edit_history":{"count":0},"feedback":{"id":"ZmVlZGJhY2s6MjY2MTA5NDMyMzk4NTgyM18yNjYxMjAzNDk3MzA4MjM5","viewer_feedback_reaction_info":null,"viewer_actor":null,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"associated_video":null,"top_reactions":{"edges":[]},"reactors":{"count":0,"count_reduced":"0"},"page_private_reply":null,"can_viewer_react":false,"subscription_target_id":"2661203497308239","comment_composer_placeholder":"R\u00e9pondez...","can_viewer_comment":false,"comment_count":{"total_count":0},"comment_share_context":null,"share_fbid":"2661203497308239","political_figure_data":null,"associated_group":null,"display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"highlighted_comments":[],"is_initially_expanded":false,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":false,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}}},"page_admin_actor_info":null,"private_reply_context":null,"preferred_body":{"__typename":"TextWithEntities","translation_type":"ORIGINAL","delight_ranges":[],"ranges":[],"text":"Ok... You won... \ud83d\ude02"},"translatability_for_viewer":{"source_dialect_name":"Anglais"},"translation_available_for_viewer":false,"url":"https:\/\/www.facebook.com\/cgtnamerica\/posts\/2661094323985823?comment_id=2661203497308239","identity_badges_web":[],"can_see_constituent_badge_upsell":false,"has_constituent_badge":false,"sub_reply_parent_preview_context":null,"can_viewer_disable_preview":false,"is_hidden_by_content_owner":null,"www_layout_renderer":null,"sub_reply_parent_above_comment_author_context":null,"body":{"text":"Ok... You won... \ud83d\ude02","ranges":[]},"is_markdown_enabled":false,"can_comment":{"can_viewer_comment":false,"id":"ZmVlZGJhY2s6MjY2MTA5NDMyMzk4NTgyM18yNjYxMjAzNDk3MzA4MjM5"},"inline_survey_config":null,"reply_parent_comment":null,"flat_threading_depth":0,"__typename":"Comment"},"cursor":"AQHRRYMnQDTnnAknovEo6YiKiDmwiOqD8NHQdUOIi8DsGJubLgEtzTYU_vaGh4-zZ8CmTl7XPpRPkhwUXD2r44PGlQ"}],"is_initially_expanded":true,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":true,"comment_order":"TOPLEVEL","page_info":{"end_cursor":"AQHRzT-e1OHVFKJjU-F0ok4zYVow9Y8BN7QnEM00rwNlpi6eNbvyBALSIY_JnFG7n0bM8EPazucwd2-i0oLdEtByuQ","has_next_page":false,"has_previous_page":false,"start_cursor":"AQHRzT-e1OHVFKJjU-F0ok4zYVow9Y8BN7QnEM00rwNlpi6eNbvyBALSIY_JnFG7n0bM8EPazucwd2-i0oLdEtByuQ"}},"can_viewer_react":false,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"feedback_typers":{"other_count":0},"default_comment_ordering":"toplevel","localized_comment_orderings":[{"description":"Affiche tous les commentaires, les plus anciens apparaissant en premier.","title":"Les plus anciens","value":"TOPLEVEL"},{"description":"Affiche les commentaires d\u2019amis et ceux ayant entra\u00een\u00e9 le plus de r\u00e9actions en premier.","title":"Les plus pertinents","value":"RANKED_THREADED"},{"description":"Affiche tous les commentaires, y compris ceux \u00e9tant potentiellement ind\u00e9sirables. Les commentaires les plus pertinents appara\u00eetront en premier.","title":"Tous les commentaires","value":"RANKED_UNFILTERED"}]}},"extensions":{"is_final":true}},"sequence_number":0,"variables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjY2MTA5NDMyMzk4NTgyMw==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661094323985823","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"incremental_chunks":[]}}],2],["RelayPrefetchedStreamCache","next",[],["adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafbcf5498795473404",{"__bbox":{"result":{"data":{"feedback":{"id":"ZmVlZGJhY2s6MjY2MTMzOTU0MDYyNzk2OA==","is_eligible_for_real_time_updates":false,"subscription_target_id":"2661339540627968","owning_profile":{"__typename":"Page","id":"300653326696613"},"num_localized_comment_orderings":3,"comment_count":{"total_count":1},"i18n_comment_count":"1","url":"https:\/\/www.facebook.com\/cgtnamerica\/posts\/2661339540627968","i18n_reaction_count":"47","important_reactors":{"nodes":[]},"reaction_count":{"count":47},"viewer_actor":null,"viewer_feedback_reaction_info":null,"i18n_share_count":"13","share_count":{"count":13},"share_fbid":"2661339540627968","reactors":{"count":47},"top_reactions":{"edges":[{"reaction_count":43,"node":{"key":1,"id":"1635855486666999","localized_name":"J\u2019aime","reaction_type":"LIKE"},"i18n_reaction_count":"43"},{"reaction_count":2,"node":{"key":4,"id":"115940658764963","localized_name":"Haha","reaction_type":"HAHA"},"i18n_reaction_count":"2"},{"reaction_count":2,"node":{"key":8,"id":"444813342392137","localized_name":"Grrr","reaction_type":"ANGER"},"i18n_reaction_count":"2"}]},"associated_video":{"is_live_streaming":false,"is_profile_video":false,"id":"2561909697364016"},"video_view_count":null,"video_view_count_reduced":null,"total_video_posts":null,"video_post_view_count":null,"page_private_reply":null,"seen_by_count":{"count":null},"comment_share_context":null,"political_figure_data":null,"associated_group":null,"display_comments_count":{"count":1},"comments_disabled_notice":{"ranges":[],"text":"Les commentaires ont \u00e9t\u00e9 d\u00e9sactiv\u00e9s pour cette publication."},"can_viewer_comment":false,"comment_composer_placeholder":"Votre commentaire...","display_comments":{"after_count":0,"before_count":0,"count":1,"edges":[{"node":{"created_time":1578502312,"id":"Y29tbWVudDoyNjYxMzM5NTQwNjI3OTY4XzI2NjE0MTYwNDM5NTM2NTE=","legacy_fbid":"2661416043953651","author":{"__typename":"User","id":"100007297776629","name":"\u064a\u0648\u0633\u0641 \u0627\u0644\u0634\u064a\u0639\u064a","profile_picture_depth_0":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/cp0\/p32x32\/12316290_1632656943654216_7945367133490143014_n.jpg?_nc_cat=102&_nc_ohc=X9WtKepAmvsAQlJpjNV_xLJJdI6mSg2nUwMCrdhQwjaDAvwhlLvpdGzhQ&_nc_ht=scontent-cdg2-1.xx&oh=b827f0c476dd1cdaf9f90168de9d4bed&oe=5E8D978A"},"profile_picture_depth_1":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/cp0\/p24x24\/12316290_1632656943654216_7945367133490143014_n.jpg?_nc_cat=102&_nc_ohc=X9WtKepAmvsAQlJpjNV_xLJJdI6mSg2nUwMCrdhQwjaDAvwhlLvpdGzhQ&_nc_ht=scontent-cdg2-1.xx&oh=85415a762019435367cbcf807b6cf562&oe=5E98076D"},"www_url":null,"url":null,"is_verified":false,"short_name":"\u064a\u0648\u0633\u0641"},"is_author_weak_reference":false,"spam_display_mode":"none","attachments":[],"attached_story":null,"parent_post_story":{"id":"UzpfSTMwMDY1MzMyNjY5NjYxMzoyNjYxMzM5NTQwNjI3OTY4"},"group_comment_info":null,"legacy_token":"2661339540627968_2661416043953651","comment_menu_tooltip":null,"comment_menu_items":[],"is_author_banned_by_content_owner":false,"parent_feedback":{"id":"ZmVlZGJhY2s6MjY2MTMzOTU0MDYyNzk2OA==","viewer_acts_as_page":null,"can_viewer_ban_user":false},"create_detailed_report_uri":"https:\/\/www.facebook.com\/in_app_escalation\/?context=\u00257B\u002522session_id\u002522\u00253A\u002522e630d13e-fa0e-4471-9958-afcc8d5e2bd0\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522feed\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522comment\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u0025222661416043953651\u002522\u00257D","us_structured_reporting_enabled":false,"can_viewer_share":false,"chat_to_buy":null,"edit_history":{"count":0},"feedback":{"id":"ZmVlZGJhY2s6MjY2MTMzOTU0MDYyNzk2OF8yNjYxNDE2MDQzOTUzNjUx","viewer_feedback_reaction_info":null,"viewer_actor":null,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"associated_video":null,"top_reactions":{"edges":[{"reaction_count":1,"node":{"key":1,"id":"1635855486666999","reaction_type":"LIKE"}}]},"reactors":{"count":1,"count_reduced":"1"},"page_private_reply":null,"can_viewer_react":false,"subscription_target_id":"2661416043953651","comment_composer_placeholder":"R\u00e9pondez...","can_viewer_comment":false,"comment_count":{"total_count":0},"comment_share_context":null,"share_fbid":"2661416043953651","political_figure_data":null,"associated_group":null,"display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"highlighted_comments":[],"is_initially_expanded":false,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":false,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}}},"page_admin_actor_info":null,"private_reply_context":null,"preferred_body":{"__typename":"TextWithEntities","translation_type":"ORIGINAL","delight_ranges":[],"ranges":[],"text":"Every American terrorist, son of Gianna Michaels \ud83d\udc83\ud83c\udffb\ud83d\udc59, should put his clothes and shoes in his bag and get out of our country."},"translatability_for_viewer":{"source_dialect_name":"Anglais"},"translation_available_for_viewer":false,"url":"https:\/\/www.facebook.com\/cgtnamerica\/posts\/2661339540627968?comment_id=2661416043953651","identity_badges_web":[],"can_see_constituent_badge_upsell":false,"has_constituent_badge":false,"sub_reply_parent_preview_context":null,"can_viewer_disable_preview":false,"is_hidden_by_content_owner":null,"www_layout_renderer":null,"sub_reply_parent_above_comment_author_context":null,"body":{"text":"Every American terrorist, son of Gianna Michaels \ud83d\udc83\ud83c\udffb\ud83d\udc59, should put his clothes and shoes in his bag and get out of our country.","ranges":[]},"is_markdown_enabled":false,"can_comment":{"can_viewer_comment":false,"id":"ZmVlZGJhY2s6MjY2MTMzOTU0MDYyNzk2OF8yNjYxNDE2MDQzOTUzNjUx"},"inline_survey_config":null,"reply_parent_comment":null,"flat_threading_depth":0,"__typename":"Comment"},"cursor":"AQHRVWljo67O_fIBLm8klAoX3tNUPEA84-KrgIvUXYvH4BrDG452VieUsn9bJpN1cPsAEAwQ8o7xpwoA9iNr00-ypA"}],"is_initially_expanded":true,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":true,"comment_order":"TOPLEVEL","page_info":{"end_cursor":"AQHR2Yj1B9-ri2atZ85L9GcDkf1Hg_2wWFyhvzjtg_LPeyu1DBfRe5SVS_XX0zp_V8w53GmO57270PiGnZWj2ylbCw","has_next_page":false,"has_previous_page":false,"start_cursor":"AQHR2Yj1B9-ri2atZ85L9GcDkf1Hg_2wWFyhvzjtg_LPeyu1DBfRe5SVS_XX0zp_V8w53GmO57270PiGnZWj2ylbCw"}},"can_viewer_react":false,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"feedback_typers":{"other_count":0},"default_comment_ordering":"toplevel","localized_comment_orderings":[{"description":"Affiche tous les commentaires, les plus anciens apparaissant en premier.","title":"Les plus anciens","value":"TOPLEVEL"},{"description":"Affiche les commentaires d\u2019amis et ceux ayant entra\u00een\u00e9 le plus de r\u00e9actions en premier.","title":"Les plus pertinents","value":"RANKED_THREADED"},{"description":"Affiche tous les commentaires, y compris ceux \u00e9tant potentiellement ind\u00e9sirables. Les commentaires les plus pertinents appara\u00eetront en premier.","title":"Tous les commentaires","value":"RANKED_UNFILTERED"}]}},"extensions":{"is_final":true}},"sequence_number":0,"variables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjY2MTMzOTU0MDYyNzk2OA==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661339540627968","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"incremental_chunks":[]}}],2],["RelayPrefetchedStreamCache","next",[],["adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafc224f40763499187",{"__bbox":{"result":{"data":{"feedback":{"id":"ZmVlZGJhY2s6MjY1OTczOTIxNzQ1NDY2Nw==","is_eligible_for_real_time_updates":false,"subscription_target_id":"2659739217454667","owning_profile":{"__typename":"Page","id":"300653326696613"},"num_localized_comment_orderings":3,"comment_count":{"total_count":3},"i18n_comment_count":"3","url":"https:\/\/www.facebook.com\/cgtnamerica\/posts\/2659739217454667","i18n_reaction_count":"26","important_reactors":{"nodes":[]},"reaction_count":{"count":26},"viewer_actor":null,"viewer_feedback_reaction_info":null,"i18n_share_count":"3","share_count":{"count":3},"share_fbid":"2659739217454667","reactors":{"count":26},"top_reactions":{"edges":[{"reaction_count":23,"node":{"key":1,"id":"1635855486666999","localized_name":"J\u2019aime","reaction_type":"LIKE"},"i18n_reaction_count":"23"},{"reaction_count":1,"node":{"key":2,"id":"1678524932434102","localized_name":"J\u2019adore","reaction_type":"LOVE"},"i18n_reaction_count":"1"},{"reaction_count":1,"node":{"key":4,"id":"115940658764963","localized_name":"Haha","reaction_type":"HAHA"},"i18n_reaction_count":"1"},{"reaction_count":1,"node":{"key":3,"id":"478547315650144","localized_name":"Wouah","reaction_type":"WOW"},"i18n_reaction_count":"1"}]},"associated_video":{"is_live_streaming":false,"is_profile_video":false,"id":"2658816227487174"},"video_view_count":null,"video_view_count_reduced":null,"total_video_posts":null,"video_post_view_count":null,"page_private_reply":null,"seen_by_count":{"count":null},"comment_share_context":null,"political_figure_data":null,"associated_group":null,"display_comments_count":{"count":2},"comments_disabled_notice":{"ranges":[],"text":"Les commentaires ont \u00e9t\u00e9 d\u00e9sactiv\u00e9s pour cette publication."},"can_viewer_comment":false,"comment_composer_placeholder":"Votre commentaire...","display_comments":{"after_count":0,"before_count":0,"count":2,"edges":[{"node":{"created_time":1578482788,"id":"Y29tbWVudDoyNjU5NzM5MjE3NDU0NjY3XzI2NjA4MzI5NjA2Nzg2MjY=","legacy_fbid":"2660832960678626","author":{"__typename":"User","id":"100000737181961","name":"Mouadh Douma","profile_picture_depth_0":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/cp0\/p32x32\/49153986_2298229983544885_6774513162214440960_n.jpg?_nc_cat=105&_nc_ohc=627iK9411XwAQlQ3aIkzVg0nDUsk87nxVUWVPcngRk2DXlqARX11EEkVA&_nc_ht=scontent-cdg2-1.xx&oh=0d797f8819e9f390360b196703a1cdbe&oe=5E8F79F0"},"profile_picture_depth_1":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/cp0\/p24x24\/49153986_2298229983544885_6774513162214440960_n.jpg?_nc_cat=105&_nc_ohc=627iK9411XwAQlQ3aIkzVg0nDUsk87nxVUWVPcngRk2DXlqARX11EEkVA&_nc_ht=scontent-cdg2-1.xx&oh=bdcd05e5b0008a5e2de546606796cb13&oe=5EA37417"},"www_url":null,"url":null,"is_verified":false,"short_name":"Mouadh"},"is_author_weak_reference":false,"spam_display_mode":"none","attachments":[],"attached_story":null,"parent_post_story":{"id":"UzpfSTMwMDY1MzMyNjY5NjYxMzoyNjU5NzM5MjE3NDU0NjY3"},"group_comment_info":null,"legacy_token":"2659739217454667_2660832960678626","comment_menu_tooltip":null,"comment_menu_items":[],"is_author_banned_by_content_owner":false,"parent_feedback":{"id":"ZmVlZGJhY2s6MjY1OTczOTIxNzQ1NDY2Nw==","viewer_acts_as_page":null,"can_viewer_ban_user":false},"create_detailed_report_uri":"https:\/\/www.facebook.com\/in_app_escalation\/?context=\u00257B\u002522session_id\u002522\u00253A\u00252248d6599c-2a81-4f85-bd38-a58ca3e1e06a\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522feed\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522comment\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u0025222660832960678626\u002522\u00257D","us_structured_reporting_enabled":false,"can_viewer_share":false,"chat_to_buy":null,"edit_history":{"count":0},"feedback":{"id":"ZmVlZGJhY2s6MjY1OTczOTIxNzQ1NDY2N18yNjYwODMyOTYwNjc4NjI2","viewer_feedback_reaction_info":null,"viewer_actor":null,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"associated_video":null,"top_reactions":{"edges":[{"reaction_count":1,"node":{"key":4,"id":"115940658764963","reaction_type":"HAHA"}}]},"reactors":{"count":1,"count_reduced":"1"},"page_private_reply":null,"can_viewer_react":false,"subscription_target_id":"2660832960678626","comment_composer_placeholder":"R\u00e9pondez...","can_viewer_comment":false,"comment_count":{"total_count":1},"comment_share_context":null,"share_fbid":"2660832960678626","political_figure_data":null,"associated_group":null,"display_comments":{"after_count":1,"before_count":0,"count":1,"edges":[],"highlighted_comments":[],"is_initially_expanded":false,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":false,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":true,"has_previous_page":false,"start_cursor":null}}},"page_admin_actor_info":null,"private_reply_context":null,"preferred_body":{"__typename":"TextWithEntities","translation_type":"ORIGINAL","delight_ranges":[],"ranges":[{"__typename":"EntityAtRange","entity":{"__typename":"Hashtag","url":"https:\/\/www.facebook.com\/hashtag\/\u0025D8\u0025A7\u0025D9\u002584\u0025D9\u002584\u0025D9\u002587\u0025D9\u002585_\u0025D8\u0025A7\u0025D9\u002586\u0025D8\u0025B5\u0025D8\u0025B1_\u0025D8\u0025A7\u0025D9\u002584\u0025D8\u0025A7\u0025D8\u0025B3\u0025D9\u002584\u0025D8\u0025A7\u0025D9\u002585_\u0025D9\u002588_\u0025D8\u0025A7\u0025D9\u002584\u0025D9\u002585\u0025D8\u0025B3\u0025D9\u002584\u0025D9\u002585\u0025D9\u00258A\u0025D9\u002586","id":"524563870950488"},"entity_is_weak_reference":false,"length":30,"offset":0},{"__typename":"EntityAtRange","entity":{"__typename":"Hashtag","url":"https:\/\/www.facebook.com\/hashtag\/\u0025D8\u0025A7\u0025D9\u002584\u0025D9\u002585\u0025D9\u002582\u0025D8\u0025A7\u0025D8\u0025B7\u0025D8\u0025B9\u0025D8\u0025A9_\u0025D8\u0025A7\u0025D9\u002584\u0025D8\u0025A7\u0025D9\u002582\u0025D8\u0025AA\u0025D8\u0025B5\u0025D8\u0025A7\u0025D8\u0025AF\u0025D9\u00258A\u0025D8\u0025A9_\u0025D9\u002584\u0025D9\u002584\u0025D8\u0025B5\u0025D9\u00258A\u0025D9\u002586","id":"2614642141916327"},"entity_is_weak_reference":false,"length":26,"offset":31},{"__typename":"EntityAtRange","entity":{"__typename":"Hashtag","url":"https:\/\/www.facebook.com\/hashtag\/\u0025D8\u0025A7\u0025D9\u002584\u0025D8\u0025B5\u0025D9\u00258A\u0025D9\u002586_\u0025D8\u0025AA\u0025D9\u002582\u0025D8\u0025AA\u0025D9\u002584_\u0025D8\u0025A7\u0025D9\u002584\u0025D9\u002585\u0025D8\u0025B3\u0025D9\u002584\u0025D9\u002585\u0025D9\u00258A\u0025D9\u002586","id":"1550850671623224"},"entity_is_weak_reference":false,"length":20,"offset":58},{"__typename":"EntityAtRange","entity":{"__typename":"Hashtag","url":"https:\/\/www.facebook.com\/hashtag\/\u0025D8\u0025A7\u0025D9\u002584\u0025D8\u0025B5\u0025D9\u00258A\u0025D9\u002586_\u0025D8\u0025A8\u0025D9\u002584\u0025D8\u0025AF_\u0025D8\u0025A5\u0025D8\u0025B1\u0025D9\u002587\u0025D8\u0025A7\u0025D8\u0025A8\u0025D9\u00258A_\u0025D9\u00258A\u0025D9\u002582\u0025D8\u0025AA\u0025D9\u002584_\u0025D9\u002585\u0025D8\u0025B3\u0025D9\u002584\u0025D9\u002585\u0025D9\u00258A_\u0025D8\u0025A7\u0025D9\u002584\u0025D8\u0025A7\u0025D9\u002588\u0025D9\u00258A\u0025D8\u0025BA\u0025D9\u002588\u0025D8\u0025B1","id":"3204627242886552"},"entity_is_weak_reference":false,"length":37,"offset":79},{"__typename":"EntityAtRange","entity":{"__typename":"Hashtag","url":"https:\/\/www.facebook.com\/hashtag\/\u0025D9\u002582\u0025D8\u0025A7\u0025D8\u0025B7\u0025D8\u0025B9_\u0025D8\u0025A7\u0025D9\u002584\u0025D9\u002585\u0025D9\u002586\u0025D8\u0025AA\u0025D8\u0025AC\u0025D8\u0025A7\u0025D8\u0025AA_\u0025D8\u0025A7\u0025D9\u002584\u0025D8\u0025B5\u0025D9\u00258A\u0025D9\u002586\u0025D9\u00258A\u0025D8\u0025A9","id":"874040749328410"},"entity_is_weak_reference":false,"length":22,"offset":117},{"__typename":"EntityAtRange","entity":{"__typename":"Hashtag","url":"https:\/\/www.facebook.com\/hashtag\/\u0025D9\u002585\u0025D8\u0025B3\u0025D9\u002584\u0025D9\u002585\u0025D9\u00258A_\u0025D8\u0025A7\u0025D9\u002584\u0025D8\u0025A7\u0025D9\u002588\u0025D9\u00258A\u0025D8\u0025BA\u0025D9\u002588\u0025D8\u0025B1_\u0025D8\u0025A3\u0025D9\u002587\u0025D9\u002584_\u0025D8\u0025AA\u0025D8\u0025B1\u0025D9\u002583\u0025D8\u0025B3\u0025D8\u0025AA\u0025D8\u0025A7\u0025D9\u002586_\u0025D8\u0025A7\u0025D9\u002584\u0025D8\u0025B4\u0025D8\u0025B1\u0025D9\u002582\u0025D9\u00258A\u0025D8\u0025A9_\u0025D8\u0025A7\u0025D9\u002584\u0025D9\u002585\u0025D8\u0025AD\u0025D8\u0025AA\u0025D9\u002584\u0025D8\u0025A9","id":"3002020106477391"},"entity_is_weak_reference":false,"length":43,"offset":140},{"__typename":"EntityAtRange","entity":{"__typename":"Hashtag","url":"https:\/\/www.facebook.com\/hashtag\/china_kills_muslims","id":"2286122668065662"},"entity_is_weak_reference":false,"length":20,"offset":184},{"__typename":"EntityAtRange","entity":{"__typename":"Hashtag","url":"https:\/\/www.facebook.com\/hashtag\/\u0025E4\u0025B8\u0025AD\u0025E5\u00259C\u00258B\u0025E6\u0025AE\u0025BA\u0025E6\u0025AD\u0025BB\u0025E7\u0025A9\u002586\u0025E6\u002596\u0025AF\u0025E6\u00259E\u002597","id":"2727425274043075"},"entity_is_weak_reference":false,"length":8,"offset":205},{"__typename":"EntityAtRange","entity":{"__typename":"Hashtag","url":"https:\/\/www.facebook.com\/hashtag\/china_is_terrorist","id":"2382642925189850"},"entity_is_weak_reference":false,"length":19,"offset":214},{"__typename":"EntityAtRange","entity":{"__typename":"Hashtag","url":"https:\/\/www.facebook.com\/hashtag\/westandwithyughur","id":"2543277062455713"},"entity_is_weak_reference":false,"length":18,"offset":243}],"text":"#\u0627\u0644\u0644\u0647\u0645_\u0627\u0646\u0635\u0631_\u0627\u0644\u0627\u0633\u0644\u0627\u0645_\u0648_\u0627\u0644\u0645\u0633\u0644\u0645\u064a\u0646\n#\u0627\u0644\u0645\u0642\u0627\u0637\u0639\u0629_\u0627\u0644\u0627\u0642\u062a\u0635\u0627\u062f\u064a\u0629_\u0644\u0644\u0635\u064a\u0646\n#\u0627\u0644\u0635\u064a\u0646_\u062a\u0642\u062a\u0644_\u0627\u0644\u0645\u0633\u0644\u0645\u064a\u0646\n#\u0627\u0644\u0635\u064a\u0646_\u0628\u0644\u062f_\u0625\u0631\u0647\u0627\u0628\u064a_\u064a\u0642\u062a\u0644_\u0645\u0633\u0644\u0645\u064a_\u0627\u0644\u0627\u0648\u064a\u063a\u0648\u0631\n#\u0642\u0627\u0637\u0639_\u0627\u0644\u0645\u0646\u062a\u062c\u0627\u062a_\u0627\u0644\u0635\u064a\u0646\u064a\u0629\n#\u0645\u0633\u0644\u0645\u064a_\u0627\u0644\u0627\u0648\u064a\u063a\u0648\u0631_\u0623\u0647\u0644_\u062a\u0631\u0643\u0633\u062a\u0627\u0646_\u0627\u0644\u0634\u0631\u0642\u064a\u0629_\u0627\u0644\u0645\u062d\u062a\u0644\u0629\n#China_kills_Muslims\n#\u4e2d\u570b\u6bba\u6b7b\u7a46\u65af\u6797\n#China_is_terrorist\n#\u4e2d\u570b\u6bba\u6b7b\u7a46\u65af\u6797\n#westandwithyughur\n#\u4e2d\u570b\u6bba\u6b7b\u7a46\u65af\u6797"},"translatability_for_viewer":{"source_dialect_name":"Anglais"},"translation_available_for_viewer":false,"url":"https:\/\/www.facebook.com\/cgtnamerica\/posts\/2659739217454667?comment_id=2660832960678626","identity_badges_web":[],"can_see_constituent_badge_upsell":false,"has_constituent_badge":false,"sub_reply_parent_preview_context":null,"can_viewer_disable_preview":false,"is_hidden_by_content_owner":null,"www_layout_renderer":null,"sub_reply_parent_above_comment_author_context":null,"body":{"text":"#\u0627\u0644\u0644\u0647\u0645_\u0627\u0646\u0635\u0631_\u0627\u0644\u0627\u0633\u0644\u0627\u0645_\u0648_\u0627\u0644\u0645\u0633\u0644\u0645\u064a\u0646\n#\u0627\u0644\u0645\u0642\u0627\u0637\u0639\u0629_\u0627\u0644\u0627\u0642\u062a\u0635\u0627\u062f\u064a\u0629_\u0644\u0644\u0635\u064a\u0646\n#\u0627\u0644\u0635\u064a\u0646_\u062a\u0642\u062a\u0644_\u0627\u0644\u0645\u0633\u0644\u0645\u064a\u0646\n#\u0627\u0644\u0635\u064a\u0646_\u0628\u0644\u062f_\u0625\u0631\u0647\u0627\u0628\u064a_\u064a\u0642\u062a\u0644_\u0645\u0633\u0644\u0645\u064a_\u0627\u0644\u0627\u0648\u064a\u063a\u0648\u0631\n#\u0642\u0627\u0637\u0639_\u0627\u0644\u0645\u0646\u062a\u062c\u0627\u062a_\u0627\u0644\u0635\u064a\u0646\u064a\u0629\n#\u0645\u0633\u0644\u0645\u064a_\u0627\u0644\u0627\u0648\u064a\u063a\u0648\u0631_\u0623\u0647\u0644_\u062a\u0631\u0643\u0633\u062a\u0627\u0646_\u0627\u0644\u0634\u0631\u0642\u064a\u0629_\u0627\u0644\u0645\u062d\u062a\u0644\u0629\n#China_kills_Muslims\n#\u4e2d\u570b\u6bba\u6b7b\u7a46\u65af\u6797\n#China_is_terrorist\n#\u4e2d\u570b\u6bba\u6b7b\u7a46\u65af\u6797\n#westandwithyughur\n#\u4e2d\u570b\u6bba\u6b7b\u7a46\u65af\u6797","ranges":[{"__typename":"EntityAtRange","entity":{"__typename":"Hashtag","id":"524563870950488"},"entity_is_weak_reference":false,"length":30,"offset":0},{"__typename":"EntityAtRange","entity":{"__typename":"Hashtag","id":"2614642141916327"},"entity_is_weak_reference":false,"length":26,"offset":31},{"__typename":"EntityAtRange","entity":{"__typename":"Hashtag","id":"1550850671623224"},"entity_is_weak_reference":false,"length":20,"offset":58},{"__typename":"EntityAtRange","entity":{"__typename":"Hashtag","id":"3204627242886552"},"entity_is_weak_reference":false,"length":37,"offset":79},{"__typename":"EntityAtRange","entity":{"__typename":"Hashtag","id":"874040749328410"},"entity_is_weak_reference":false,"length":22,"offset":117},{"__typename":"EntityAtRange","entity":{"__typename":"Hashtag","id":"3002020106477391"},"entity_is_weak_reference":false,"length":43,"offset":140},{"__typename":"EntityAtRange","entity":{"__typename":"Hashtag","id":"2286122668065662"},"entity_is_weak_reference":false,"length":20,"offset":184},{"__typename":"EntityAtRange","entity":{"__typename":"Hashtag","id":"2727425274043075"},"entity_is_weak_reference":false,"length":8,"offset":205},{"__typename":"EntityAtRange","entity":{"__typename":"Hashtag","id":"2382642925189850"},"entity_is_weak_reference":false,"length":19,"offset":214},{"__typename":"EntityAtRange","entity":{"__typename":"Hashtag","id":"2543277062455713"},"entity_is_weak_reference":false,"length":18,"offset":243}]},"is_markdown_enabled":false,"can_comment":{"can_viewer_comment":false,"id":"ZmVlZGJhY2s6MjY1OTczOTIxNzQ1NDY2N18yNjYwODMyOTYwNjc4NjI2"},"inline_survey_config":null,"reply_parent_comment":null,"flat_threading_depth":0,"__typename":"Comment"},"cursor":"AQHR10jD1x2uKH789y-3D3NDU6jwmio4Ln25eIM2x3tsvZIb76jHwvnIQsd1gMgBNtZ1IHKDN-ttJTiTvQt8_s5C_A"},{"node":{"created_time":1578435814,"id":"Y29tbWVudDoyNjU5NzM5MjE3NDU0NjY3XzI2NTk3NDIyMzc0NTQzNjU=","legacy_fbid":"2659742237454365","author":{"__typename":"User","id":"100016577234858","name":"Bob Grays","profile_picture_depth_0":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/cp0\/p32x32\/81880431_593752077854028_6523742210918187008_n.jpg?_nc_cat=103&_nc_ohc=cUDQp6ohp9sAQn1w3qHY94Vzf0vZ81XfKuIlKQ0mZPdLDWlm1OpDm8UrQ&_nc_ht=scontent-cdg2-1.xx&oh=f177fc5aca1c00fba4fbe5c0318b5943&oe=5E919888"},"profile_picture_depth_1":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/cp0\/p24x24\/81880431_593752077854028_6523742210918187008_n.jpg?_nc_cat=103&_nc_ohc=cUDQp6ohp9sAQn1w3qHY94Vzf0vZ81XfKuIlKQ0mZPdLDWlm1OpDm8UrQ&_nc_ht=scontent-cdg2-1.xx&oh=5c61ad9c5ee9ad454e87feeb174c7ecc&oe=5E994211"},"www_url":null,"url":null,"is_verified":false,"short_name":"Bob"},"is_author_weak_reference":false,"spam_display_mode":"none","attachments":[],"attached_story":null,"parent_post_story":{"id":"UzpfSTMwMDY1MzMyNjY5NjYxMzoyNjU5NzM5MjE3NDU0NjY3"},"group_comment_info":null,"legacy_token":"2659739217454667_2659742237454365","comment_menu_tooltip":null,"comment_menu_items":[],"is_author_banned_by_content_owner":false,"parent_feedback":{"id":"ZmVlZGJhY2s6MjY1OTczOTIxNzQ1NDY2Nw==","viewer_acts_as_page":null,"can_viewer_ban_user":false},"create_detailed_report_uri":"https:\/\/www.facebook.com\/in_app_escalation\/?context=\u00257B\u002522session_id\u002522\u00253A\u002522145d9d44-5300-44be-bcd0-28e50b752eae\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522feed\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522comment\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u0025222659742237454365\u002522\u00257D","us_structured_reporting_enabled":false,"can_viewer_share":false,"chat_to_buy":null,"edit_history":{"count":0},"feedback":{"id":"ZmVlZGJhY2s6MjY1OTczOTIxNzQ1NDY2N18yNjU5NzQyMjM3NDU0MzY1","viewer_feedback_reaction_info":null,"viewer_actor":null,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"associated_video":null,"top_reactions":{"edges":[{"reaction_count":1,"node":{"key":1,"id":"1635855486666999","reaction_type":"LIKE"}}]},"reactors":{"count":1,"count_reduced":"1"},"page_private_reply":null,"can_viewer_react":false,"subscription_target_id":"2659742237454365","comment_composer_placeholder":"R\u00e9pondez...","can_viewer_comment":false,"comment_count":{"total_count":0},"comment_share_context":null,"share_fbid":"2659742237454365","political_figure_data":null,"associated_group":null,"display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"highlighted_comments":[],"is_initially_expanded":false,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":false,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}}},"page_admin_actor_info":null,"private_reply_context":null,"preferred_body":{"__typename":"TextWithEntities","translation_type":"ORIGINAL","delight_ranges":[],"ranges":[],"text":"Yankee go home!"},"translatability_for_viewer":{"source_dialect_name":"Anglais"},"translation_available_for_viewer":false,"url":"https:\/\/www.facebook.com\/cgtnamerica\/posts\/2659739217454667?comment_id=2659742237454365","identity_badges_web":[],"can_see_constituent_badge_upsell":false,"has_constituent_badge":false,"sub_reply_parent_preview_context":null,"can_viewer_disable_preview":false,"is_hidden_by_content_owner":null,"www_layout_renderer":null,"sub_reply_parent_above_comment_author_context":null,"body":{"text":"Yankee go home!","ranges":[]},"is_markdown_enabled":false,"can_comment":{"can_viewer_comment":false,"id":"ZmVlZGJhY2s6MjY1OTczOTIxNzQ1NDY2N18yNjU5NzQyMjM3NDU0MzY1"},"inline_survey_config":null,"reply_parent_comment":null,"flat_threading_depth":0,"__typename":"Comment"},"cursor":"AQHR9AHlJUtJe7ZHUcu4nlBT_UKM-Nt1XvhoOcm4McnZGo1gR2pHhUZUA0GCTVLlU4NLPRFK2bKW2lNo7ielJTkMkQ"}],"is_initially_expanded":true,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":true,"comment_order":"TOPLEVEL","page_info":{"end_cursor":"AQHR_UvwksovbD_7rhuAJwmNwxNms6_GZGBcqEATfjiTq16kFaoyZGQqoZKerrMTDDr6uCXkKz_t0bEx6p6cC4r0wQ","has_next_page":false,"has_previous_page":false,"start_cursor":"AQHRjgrYjYyvUfxqmVnmBBwgTmDwbyYWPBeI59wYJFT1PkJJsHhbGXKdsVWdwd6hr-50pRRRZmKc5_te7DCz_YR7LA"}},"can_viewer_react":false,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"feedback_typers":{"other_count":0},"default_comment_ordering":"toplevel","localized_comment_orderings":[{"description":"Affiche tous les commentaires, les plus anciens apparaissant en premier.","title":"Les plus anciens","value":"TOPLEVEL"},{"description":"Affiche les commentaires d\u2019amis et ceux ayant entra\u00een\u00e9 le plus de r\u00e9actions en premier.","title":"Les plus pertinents","value":"RANKED_THREADED"},{"description":"Affiche tous les commentaires, y compris ceux \u00e9tant potentiellement ind\u00e9sirables. Les commentaires les plus pertinents appara\u00eetront en premier.","title":"Tous les commentaires","value":"RANKED_UNFILTERED"}]}},"extensions":{"is_final":true}},"sequence_number":0,"variables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjY1OTczOTIxNzQ1NDY2Nw==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2659739217454667","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"incremental_chunks":[]}}],2],["RelayPrefetchedStreamCache","next",[],["adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafbb47ff4614456858",{"__bbox":{"result":{"data":{"feedback":{"id":"ZmVlZGJhY2s6NTc1NTUxMjA2NjE0OTAx","is_eligible_for_real_time_updates":false,"subscription_target_id":"575551206614901","owning_profile":{"__typename":"Page","id":"300653326696613"},"num_localized_comment_orderings":2,"comment_count":{"total_count":1},"i18n_comment_count":"1","url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/575551206614901\/","i18n_reaction_count":"69","important_reactors":{"nodes":[]},"reaction_count":{"count":69},"viewer_actor":null,"viewer_feedback_reaction_info":null,"i18n_share_count":"17","share_count":{"count":17},"share_fbid":"575551206614901","reactors":{"count":69},"top_reactions":{"edges":[{"reaction_count":60,"node":{"key":1,"id":"1635855486666999","localized_name":"J\u2019aime","reaction_type":"LIKE"},"i18n_reaction_count":"60"},{"reaction_count":6,"node":{"key":3,"id":"478547315650144","localized_name":"Wouah","reaction_type":"WOW"},"i18n_reaction_count":"6"},{"reaction_count":3,"node":{"key":2,"id":"1678524932434102","localized_name":"J\u2019adore","reaction_type":"LOVE"},"i18n_reaction_count":"3"}]},"associated_video":{"is_live_streaming":false,"is_profile_video":false,"id":"575551206614901"},"video_view_count":1494,"video_view_count_reduced":"1,4\u00a0K","total_video_posts":1,"video_post_view_count":1494,"page_private_reply":null,"seen_by_count":{"count":null},"comment_share_context":null,"political_figure_data":null,"associated_group":null,"display_comments_count":{"count":1},"comments_disabled_notice":{"ranges":[],"text":"Les commentaires ont \u00e9t\u00e9 d\u00e9sactiv\u00e9s pour cette publication."},"can_viewer_comment":false,"comment_composer_placeholder":"Votre commentaire...","display_comments":{"after_count":0,"before_count":0,"count":1,"edges":[{"node":{"created_time":1578466958,"id":"Y29tbWVudDo1NzU1NTEyMDY2MTQ5MDFfNTc1Nzk5NzU2NTkwMDQ2","legacy_fbid":"575799756590046","author":{"__typename":"User","id":"100045089322910","name":"Elly Drummer Tz","profile_picture_depth_0":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/cp0\/p32x32\/80453880_106320357547608_3404463263772049408_o.jpg?_nc_cat=103&_nc_ohc=8mpbCtI4FxEAQnRlqbjUNV7Jst789pMosU3Ltb_IPA9kqehIXglvqSakw&_nc_ht=scontent-cdg2-1.xx&oh=38cd883a4b6d78eaafe5a34eba7fa9a4&oe=5E9F20CC"},"profile_picture_depth_1":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/cp0\/p24x24\/80453880_106320357547608_3404463263772049408_o.jpg?_nc_cat=103&_nc_ohc=8mpbCtI4FxEAQnRlqbjUNV7Jst789pMosU3Ltb_IPA9kqehIXglvqSakw&_nc_ht=scontent-cdg2-1.xx&oh=63bfde217f155ab64edb38a6fe941e0b&oe=5EB05355"},"www_url":"https:\/\/www.facebook.com\/elly.drummertz.3","url":"https:\/\/www.facebook.com\/elly.drummertz.3","is_verified":false,"short_name":"Elly"},"is_author_weak_reference":false,"spam_display_mode":"none","attachments":[{"style_list":["sticker","fallback"],"url":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t39.1997-6\/68940115_2353822571368646_2723590318904573952_n.png?_nc_cat=1&_nc_ohc=YRoLOqNqtDEAQmVaW3tctafZoNoPU6xGACfRQiUWejuyMugkyWcdSV2mA&_nc_ht=scontent-cdg2-1.xx&oh=1af9ac3cc8a39deaa397e42717951551&oe=5EA684CF","source":null,"media":{"__typename":"Sticker","gifAnimatedImage_396":null,"image_396":{"height":240,"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t39.1997-6\/68940115_2353822571368646_2723590318904573952_n.png?_nc_cat=1&_nc_ohc=YRoLOqNqtDEAQmVaW3tctafZoNoPU6xGACfRQiUWejuyMugkyWcdSV2mA&_nc_ht=scontent-cdg2-1.xx&oh=1af9ac3cc8a39deaa397e42717951551&oe=5EA684CF","width":240},"webPAnimatedImage_396":{"height":240,"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t39.1997-6\/68848162_2353822274702009_7968741583510044672_n.webp?_nc_cat=1&_nc_ohc=mQ_71gDxKKsAQmdVaK0hkIYb2qU_T6OQAx-IBXW55g-zZL2teJ3kpKMLg&_nc_ht=scontent-cdg2-1.xx&oh=29d086d0a358bd00c7facb60baea1242&oe=5EA11313","width":240},"id":"1049959055088344","fallback_image":{"height":100,"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t39.1997-6\/p100x100\/68940115_2353822571368646_2723590318904573952_n.png?_nc_cat=1&_nc_ohc=YRoLOqNqtDEAQmVaW3tctafZoNoPU6xGACfRQiUWejuyMugkyWcdSV2mA&_nc_ht=scontent-cdg2-1.xx&oh=82eeb3170c555ef3b7062fbd45b27a3f&oe=5E9FABCB","width":100},"is_playable":false},"target":{"__typename":"Sticker","id":"1049959055088344"},"style_infos":[],"title_with_entities":{"text":""},"action_links":[],"tracking":null,"sticker":{"__typename":"Sticker","frame_count":9,"frame_rate":83,"frames_per_column":3,"frames_per_row":3,"label":"","pack":{"name":"Olympia","id":"1045328075551442"},"sprite_image":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t39.1997-6\/p240x240\/69024153_2353822284702008_5201504333769736192_n.png?_nc_cat=1&_nc_ohc=TeTOzUSWf10AQlppu3LJ7-lsHrvmSxfmE_Qz6xlSvctiaDmDEXLjlg_DQ&_nc_ht=scontent-cdg2-1.xx&oh=102da3e9d2052ca519bac8807a0269ee&oe=5E9D188F"},"sticker_image":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t39.1997-6\/s110x80\/68940115_2353822571368646_2723590318904573952_n.png?_nc_cat=1&_nc_ohc=YRoLOqNqtDEAQmVaW3tctafZoNoPU6xGACfRQiUWejuyMugkyWcdSV2mA&_nc_ht=scontent-cdg2-1.xx&oh=14f4a8a9d325294b0f75a27b992026ef&oe=5EA901EE","width":80,"height":80},"larger_sticker_image":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t39.1997-6\/s168x128\/68940115_2353822571368646_2723590318904573952_n.png?_nc_cat=1&_nc_ohc=YRoLOqNqtDEAQmVaW3tctafZoNoPU6xGACfRQiUWejuyMugkyWcdSV2mA&_nc_ht=scontent-cdg2-1.xx&oh=ed46627fce6a4e6066e581265af0d46f&oe=5EA42BF6","width":128,"height":128},"sticker_type":"REGULAR","id":"1049959055088344"},"style_type_renderer_blue":null}],"attached_story":null,"parent_post_story":{"id":"UzpfSTMwMDY1MzMyNjY5NjYxMzpWSzo1NzU1NTEyMDY2MTQ5MDE="},"group_comment_info":null,"legacy_token":"575551206614901_575799756590046","comment_menu_tooltip":null,"comment_menu_items":[],"is_author_banned_by_content_owner":false,"parent_feedback":{"id":"ZmVlZGJhY2s6NTc1NTUxMjA2NjE0OTAx","viewer_acts_as_page":null,"can_viewer_ban_user":false},"create_detailed_report_uri":"https:\/\/www.facebook.com\/in_app_escalation\/?context=\u00257B\u002522session_id\u002522\u00253A\u00252202f75cad-52b5-4bbf-bffc-ed36be1cfc4d\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522feed\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522comment\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u002522575799756590046\u002522\u00257D","us_structured_reporting_enabled":false,"can_viewer_share":false,"chat_to_buy":null,"edit_history":{"count":0},"feedback":{"id":"ZmVlZGJhY2s6NTc1NTUxMjA2NjE0OTAxXzU3NTc5OTc1NjU5MDA0Ng==","viewer_feedback_reaction_info":null,"viewer_actor":null,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"associated_video":null,"top_reactions":{"edges":[]},"reactors":{"count":0,"count_reduced":"0"},"page_private_reply":null,"can_viewer_react":false,"subscription_target_id":"575799756590046","comment_composer_placeholder":"R\u00e9pondez...","can_viewer_comment":false,"comment_count":{"total_count":0},"comment_share_context":null,"share_fbid":"575799756590046","political_figure_data":null,"associated_group":null,"display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"highlighted_comments":[],"is_initially_expanded":false,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":false,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}}},"page_admin_actor_info":null,"private_reply_context":null,"preferred_body":null,"translatability_for_viewer":{"source_dialect_name":"Anglais"},"translation_available_for_viewer":false,"url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/575551206614901\/?comment_id=575799756590046","identity_badges_web":[],"can_see_constituent_badge_upsell":false,"has_constituent_badge":false,"sub_reply_parent_preview_context":null,"can_viewer_disable_preview":false,"is_hidden_by_content_owner":null,"www_layout_renderer":null,"sub_reply_parent_above_comment_author_context":null,"body":null,"is_markdown_enabled":false,"can_comment":{"can_viewer_comment":false,"id":"ZmVlZGJhY2s6NTc1NTUxMjA2NjE0OTAxXzU3NTc5OTc1NjU5MDA0Ng=="},"inline_survey_config":null,"reply_parent_comment":null,"flat_threading_depth":0,"__typename":"Comment"},"cursor":"AQHR6HIKw6p7Xj8X5ytaR-2Ukweq1E8svyGBSEonOhjRs3qgn0FmXL8yZRLEwhc4f3eItKRv1NEUS3zgqErmfnmWng"}],"is_initially_expanded":true,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":true,"comment_order":"TOPLEVEL","page_info":{"end_cursor":"AQHRpwS--WU0FyG5OTRdlsFoenzg9-JP0MbEFZcbBxKZXr5kLRA2Ufq1zObDjgHGIcbTbg5CFrlG4MPVsl9u2dIPtw","has_next_page":false,"has_previous_page":false,"start_cursor":"AQHRpwS--WU0FyG5OTRdlsFoenzg9-JP0MbEFZcbBxKZXr5kLRA2Ufq1zObDjgHGIcbTbg5CFrlG4MPVsl9u2dIPtw"}},"can_viewer_react":false,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"feedback_typers":{"other_count":0},"default_comment_ordering":"toplevel","localized_comment_orderings":[{"description":"Affiche tous les commentaires, les plus anciens apparaissant en premier.","title":"Les plus anciens","value":"TOPLEVEL"},{"description":"Affiche les commentaires d\u2019amis et ceux ayant entra\u00een\u00e9 le plus de r\u00e9actions en premier.","title":"Les plus pertinents","value":"RANKED_THREADED"}]}},"extensions":{"is_final":true}},"sequence_number":0,"variables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6NTc1NTUxMjA2NjE0OTAx","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2659799267448662","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"incremental_chunks":[]}}],2],["RelayPrefetchedStreamCache","next",[],["adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafbcdfa27c69510369",{"__bbox":{"result":{"data":{"feedback":{"id":"ZmVlZGJhY2s6MjgxMDczMjUxMjMyMjAzMw==","is_eligible_for_real_time_updates":false,"subscription_target_id":"2810732512322033","owning_profile":{"__typename":"Page","id":"300653326696613"},"num_localized_comment_orderings":2,"comment_count":{"total_count":1},"i18n_comment_count":"1","url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/2810732512322033\/","i18n_reaction_count":"13","important_reactors":{"nodes":[]},"reaction_count":{"count":13},"viewer_actor":null,"viewer_feedback_reaction_info":null,"i18n_share_count":"5","share_count":{"count":5},"share_fbid":"2810732512322033","reactors":{"count":13},"top_reactions":{"edges":[{"reaction_count":10,"node":{"key":1,"id":"1635855486666999","localized_name":"J\u2019aime","reaction_type":"LIKE"},"i18n_reaction_count":"10"},{"reaction_count":3,"node":{"key":7,"id":"908563459236466","localized_name":"Triste","reaction_type":"SORRY"},"i18n_reaction_count":"3"}]},"associated_video":{"is_live_streaming":false,"is_profile_video":false,"id":"2810732512322033"},"video_view_count":493,"video_view_count_reduced":"493","total_video_posts":1,"video_post_view_count":493,"page_private_reply":null,"seen_by_count":{"count":null},"comment_share_context":null,"political_figure_data":null,"associated_group":null,"display_comments_count":{"count":1},"comments_disabled_notice":{"ranges":[],"text":"Les commentaires ont \u00e9t\u00e9 d\u00e9sactiv\u00e9s pour cette publication."},"can_viewer_comment":false,"comment_composer_placeholder":"Votre commentaire...","display_comments":{"after_count":0,"before_count":0,"count":1,"edges":[{"node":{"created_time":1578536803,"id":"Y29tbWVudDoyODEwNzMyNTEyMzIyMDMzXzI4MTEwNjc4Njg5NTUxNjQ=","legacy_fbid":"2811067868955164","author":{"__typename":"User","id":"100005064392230","name":"Varadharajan Ramachandran","profile_picture_depth_0":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/cp0\/c0.3.32.32a\/p32x32\/58833_148084988703647_2027901001_n.jpg?_nc_cat=109&_nc_ohc=xErOyPKnytkAQneqFmJcruC2c54Ct07oZQp3fDByFSDDCpIMbzxKZ4FlQ&_nc_ht=scontent-cdg2-1.xx&oh=2c22a52ed4f071e48253a06e315377a9&oe=5EAFB080"},"profile_picture_depth_1":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/cp0\/c0.2.24.24a\/p24x24\/58833_148084988703647_2027901001_n.jpg?_nc_cat=109&_nc_ohc=xErOyPKnytkAQneqFmJcruC2c54Ct07oZQp3fDByFSDDCpIMbzxKZ4FlQ&_nc_ht=scontent-cdg2-1.xx&oh=976dccdd5758c44c3d42ab49d90f498a&oe=5EA9B0C1"},"www_url":"https:\/\/www.facebook.com\/varadharajan.ramachandran.58","url":"https:\/\/www.facebook.com\/varadharajan.ramachandran.58","is_verified":false,"short_name":"Varadharajan"},"is_author_weak_reference":false,"spam_display_mode":"none","attachments":[],"attached_story":null,"parent_post_story":{"id":"UzpfSTMwMDY1MzMyNjY5NjYxMzpWSzoyODEwNzMyNTEyMzIyMDMz"},"group_comment_info":null,"legacy_token":"2810732512322033_2811067868955164","comment_menu_tooltip":null,"comment_menu_items":[],"is_author_banned_by_content_owner":false,"parent_feedback":{"id":"ZmVlZGJhY2s6MjgxMDczMjUxMjMyMjAzMw==","viewer_acts_as_page":null,"can_viewer_ban_user":false},"create_detailed_report_uri":"https:\/\/www.facebook.com\/in_app_escalation\/?context=\u00257B\u002522session_id\u002522\u00253A\u002522642b8250-b4f3-4171-8df3-b5db4d241b27\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522feed\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522comment\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u0025222811067868955164\u002522\u00257D","us_structured_reporting_enabled":false,"can_viewer_share":false,"chat_to_buy":null,"edit_history":{"count":0},"feedback":{"id":"ZmVlZGJhY2s6MjgxMDczMjUxMjMyMjAzM18yODExMDY3ODY4OTU1MTY0","viewer_feedback_reaction_info":null,"viewer_actor":null,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"associated_video":null,"top_reactions":{"edges":[]},"reactors":{"count":0,"count_reduced":"0"},"page_private_reply":null,"can_viewer_react":false,"subscription_target_id":"2811067868955164","comment_composer_placeholder":"R\u00e9pondez...","can_viewer_comment":false,"comment_count":{"total_count":0},"comment_share_context":null,"share_fbid":"2811067868955164","political_figure_data":null,"associated_group":null,"display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"highlighted_comments":[],"is_initially_expanded":false,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":false,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}}},"page_admin_actor_info":null,"private_reply_context":null,"preferred_body":{"__typename":"TextWithEntities","translation_type":"ORIGINAL","delight_ranges":[],"ranges":[],"text":"Rip"},"translatability_for_viewer":{"source_dialect_name":"Anglais"},"translation_available_for_viewer":false,"url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/2810732512322033\/?comment_id=2811067868955164","identity_badges_web":[],"can_see_constituent_badge_upsell":false,"has_constituent_badge":false,"sub_reply_parent_preview_context":null,"can_viewer_disable_preview":false,"is_hidden_by_content_owner":null,"www_layout_renderer":null,"sub_reply_parent_above_comment_author_context":null,"body":{"text":"Rip","ranges":[]},"is_markdown_enabled":false,"can_comment":{"can_viewer_comment":false,"id":"ZmVlZGJhY2s6MjgxMDczMjUxMjMyMjAzM18yODExMDY3ODY4OTU1MTY0"},"inline_survey_config":null,"reply_parent_comment":null,"flat_threading_depth":0,"__typename":"Comment"},"cursor":"AQHRFWbLpGfXR0uPj_tYlrYYB5W3kISgoflfSJwUIzuqmJfCIJ6WmVq6uGG8oRKcyBCn8YHeHreueFTUrTmY9bcLWw"}],"is_initially_expanded":true,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":true,"comment_order":"TOPLEVEL","page_info":{"end_cursor":"AQHR8VGBLndU0NJ-8tXe7v_yVD-6-s8x1NFO2FTFCz_QDBD0cN3VpNedE2EnkhkhuxIe3wpY-HEL91x-83tRn77_WQ","has_next_page":false,"has_previous_page":false,"start_cursor":"AQHR8VGBLndU0NJ-8tXe7v_yVD-6-s8x1NFO2FTFCz_QDBD0cN3VpNedE2EnkhkhuxIe3wpY-HEL91x-83tRn77_WQ"}},"can_viewer_react":false,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"feedback_typers":{"other_count":0},"default_comment_ordering":"toplevel","localized_comment_orderings":[{"description":"Affiche tous les commentaires, les plus anciens apparaissant en premier.","title":"Les plus anciens","value":"TOPLEVEL"},{"description":"Affiche les commentaires d\u2019amis et ceux ayant entra\u00een\u00e9 le plus de r\u00e9actions en premier.","title":"Les plus pertinents","value":"RANKED_THREADED"}]}},"extensions":{"is_final":true}},"sequence_number":0,"variables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjgxMDczMjUxMjMyMjAzMw==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661931933902062","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"incremental_chunks":[]}}],2],["RelayPrefetchedStreamCache","next",[],["adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafc28e854714175710",{"__bbox":{"result":{"data":{"feedback":{"id":"ZmVlZGJhY2s6MTM0NDY5MjY4NTY5NjY5MA==","is_eligible_for_real_time_updates":false,"subscription_target_id":"1344692685696690","owning_profile":{"__typename":"Page","id":"300653326696613"},"num_localized_comment_orderings":2,"comment_count":{"total_count":12},"i18n_comment_count":"12","url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/1344692685696690\/","i18n_reaction_count":"37","important_reactors":{"nodes":[]},"reaction_count":{"count":37},"viewer_actor":null,"viewer_feedback_reaction_info":null,"i18n_share_count":"7","share_count":{"count":7},"share_fbid":"1344692685696690","reactors":{"count":37},"top_reactions":{"edges":[{"reaction_count":26,"node":{"key":1,"id":"1635855486666999","localized_name":"J\u2019aime","reaction_type":"LIKE"},"i18n_reaction_count":"26"},{"reaction_count":9,"node":{"key":4,"id":"115940658764963","localized_name":"Haha","reaction_type":"HAHA"},"i18n_reaction_count":"9"},{"reaction_count":1,"node":{"key":2,"id":"1678524932434102","localized_name":"J\u2019adore","reaction_type":"LOVE"},"i18n_reaction_count":"1"},{"reaction_count":1,"node":{"key":3,"id":"478547315650144","localized_name":"Wouah","reaction_type":"WOW"},"i18n_reaction_count":"1"}]},"associated_video":{"is_live_streaming":false,"is_profile_video":false,"id":"1344692685696690"},"video_view_count":2040,"video_view_count_reduced":"2\u00a0K","total_video_posts":1,"video_post_view_count":2037,"page_private_reply":null,"seen_by_count":{"count":null},"comment_share_context":null,"political_figure_data":null,"associated_group":null,"display_comments_count":{"count":9},"comments_disabled_notice":{"ranges":[],"text":"Les commentaires ont \u00e9t\u00e9 d\u00e9sactiv\u00e9s pour cette publication."},"can_viewer_comment":false,"comment_composer_placeholder":"Votre commentaire...","display_comments":{"after_count":6,"before_count":0,"count":9,"edges":[{"node":{"created_time":1578555344,"id":"Y29tbWVudDoxMzQ0NjkyNjg1Njk2NjkwXzEzNDUwNTQ3MjIzMjcxNTM=","legacy_fbid":"1345054722327153","author":{"__typename":"User","id":"534689236","name":"Kin Yaw","profile_picture_depth_0":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/p32x32\/47065837_10157526937464237_9052096716844564480_n.jpg?_nc_cat=103&_nc_ohc=Xya1IUOcZmIAQlN_y6vUkvVE0e6miiUxJRJSyVisrQ_Vo-qt2siKr4uPA&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=d44c0761b9a311151211cf073c26d640&oe=5EB0AB47"},"profile_picture_depth_1":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/p24x24\/47065837_10157526937464237_9052096716844564480_n.jpg?_nc_cat=103&_nc_ohc=Xya1IUOcZmIAQlN_y6vUkvVE0e6miiUxJRJSyVisrQ_Vo-qt2siKr4uPA&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=29451063aa430f126bd4666cd9c98105&oe=5E981428"},"www_url":null,"url":null,"is_verified":false,"short_name":"Kin"},"is_author_weak_reference":false,"spam_display_mode":"none","attachments":[],"attached_story":null,"parent_post_story":{"id":"UzpfSTMwMDY1MzMyNjY5NjYxMzpWSzoxMzQ0NjkyNjg1Njk2Njkw"},"group_comment_info":null,"legacy_token":"1344692685696690_1345054722327153","comment_menu_tooltip":null,"comment_menu_items":[],"is_author_banned_by_content_owner":false,"parent_feedback":{"id":"ZmVlZGJhY2s6MTM0NDY5MjY4NTY5NjY5MA==","viewer_acts_as_page":null,"can_viewer_ban_user":false},"create_detailed_report_uri":"https:\/\/www.facebook.com\/in_app_escalation\/?context=\u00257B\u002522session_id\u002522\u00253A\u002522a976b653-f2a2-4bbe-8b87-066d05f0b276\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522feed\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522comment\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u0025221345054722327153\u002522\u00257D","us_structured_reporting_enabled":false,"can_viewer_share":false,"chat_to_buy":null,"edit_history":{"count":0},"feedback":{"id":"ZmVlZGJhY2s6MTM0NDY5MjY4NTY5NjY5MF8xMzQ1MDU0NzIyMzI3MTUz","viewer_feedback_reaction_info":null,"viewer_actor":null,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"associated_video":null,"top_reactions":{"edges":[]},"reactors":{"count":0,"count_reduced":"0"},"page_private_reply":null,"can_viewer_react":false,"subscription_target_id":"1345054722327153","comment_composer_placeholder":"R\u00e9pondez...","can_viewer_comment":false,"comment_count":{"total_count":0},"comment_share_context":null,"share_fbid":"1345054722327153","political_figure_data":null,"associated_group":null,"display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"highlighted_comments":[],"is_initially_expanded":false,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":false,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}}},"page_admin_actor_info":null,"private_reply_context":null,"preferred_body":{"__typename":"TextWithEntities","translation_type":"ORIGINAL","delight_ranges":[],"ranges":[],"text":"\ud83d\ude02\ud83d\ude02\ud83d\ude02 \nU r fooling ur self..."},"translatability_for_viewer":{"source_dialect_name":"Anglais"},"translation_available_for_viewer":false,"url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/1344692685696690\/?comment_id=1345054722327153","identity_badges_web":[],"can_see_constituent_badge_upsell":false,"has_constituent_badge":false,"sub_reply_parent_preview_context":null,"can_viewer_disable_preview":false,"is_hidden_by_content_owner":null,"www_layout_renderer":null,"sub_reply_parent_above_comment_author_context":null,"body":{"text":"\ud83d\ude02\ud83d\ude02\ud83d\ude02 \nU r fooling ur self...","ranges":[]},"is_markdown_enabled":false,"can_comment":{"can_viewer_comment":false,"id":"ZmVlZGJhY2s6MTM0NDY5MjY4NTY5NjY5MF8xMzQ1MDU0NzIyMzI3MTUz"},"inline_survey_config":null,"reply_parent_comment":null,"flat_threading_depth":0,"__typename":"Comment"},"cursor":"AQHRs5G6NPN6Fa6wtybLxJNPyo-sHKufCKkxDGTvcVps99XpgKWHkfrl9j0gufN-F43-JS_Wn_3Hi4gRCA2aEeu5SQ"},{"node":{"created_time":1578544421,"id":"Y29tbWVudDoxMzQ0NjkyNjg1Njk2NjkwXzEzNDQ5NDQ5MTkwMDQ4MDA=","legacy_fbid":"1344944919004800","author":{"__typename":"User","id":"100041491331251","name":"Eddie Yende","profile_picture_depth_0":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/p32x32\/75564562_157468728979504_7304052835623108608_n.jpg?_nc_cat=111&_nc_ohc=EVdTqgRX08EAQludCpIL8ljqbPNTGC_M9vFTMWF5BuYtZdoUG7Gm1zPKg&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=bc6e4e436b9e158a3e332eb0b7e3f554&oe=5EAFE70D"},"profile_picture_depth_1":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/p24x24\/75564562_157468728979504_7304052835623108608_n.jpg?_nc_cat=111&_nc_ohc=EVdTqgRX08EAQludCpIL8ljqbPNTGC_M9vFTMWF5BuYtZdoUG7Gm1zPKg&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=a29d670ccddbe5da99a06a2ef0feff75&oe=5E94BA94"},"www_url":"https:\/\/www.facebook.com\/eddie.yende.31","url":"https:\/\/www.facebook.com\/eddie.yende.31","is_verified":false,"short_name":"Eddie"},"is_author_weak_reference":false,"spam_display_mode":"none","attachments":[],"attached_story":null,"parent_post_story":{"id":"UzpfSTMwMDY1MzMyNjY5NjYxMzpWSzoxMzQ0NjkyNjg1Njk2Njkw"},"group_comment_info":null,"legacy_token":"1344692685696690_1344944919004800","comment_menu_tooltip":null,"comment_menu_items":[],"is_author_banned_by_content_owner":false,"parent_feedback":{"id":"ZmVlZGJhY2s6MTM0NDY5MjY4NTY5NjY5MA==","viewer_acts_as_page":null,"can_viewer_ban_user":false},"create_detailed_report_uri":"https:\/\/www.facebook.com\/in_app_escalation\/?context=\u00257B\u002522session_id\u002522\u00253A\u002522abc7e9bc-8741-4eb0-b4d7-59b8c451e44f\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522feed\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522comment\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u0025221344944919004800\u002522\u00257D","us_structured_reporting_enabled":false,"can_viewer_share":false,"chat_to_buy":null,"edit_history":{"count":0},"feedback":{"id":"ZmVlZGJhY2s6MTM0NDY5MjY4NTY5NjY5MF8xMzQ0OTQ0OTE5MDA0ODAw","viewer_feedback_reaction_info":null,"viewer_actor":null,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"associated_video":null,"top_reactions":{"edges":[]},"reactors":{"count":0,"count_reduced":"0"},"page_private_reply":null,"can_viewer_react":false,"subscription_target_id":"1344944919004800","comment_composer_placeholder":"R\u00e9pondez...","can_viewer_comment":false,"comment_count":{"total_count":0},"comment_share_context":null,"share_fbid":"1344944919004800","political_figure_data":null,"associated_group":null,"display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"highlighted_comments":[],"is_initially_expanded":false,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":false,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}}},"page_admin_actor_info":null,"private_reply_context":null,"preferred_body":{"__typename":"TextWithEntities","translation_type":"ORIGINAL","delight_ranges":[],"ranges":[],"text":"Amen i receive in name of Jesus Christ"},"translatability_for_viewer":{"source_dialect_name":"Anglais"},"translation_available_for_viewer":false,"url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/1344692685696690\/?comment_id=1344944919004800","identity_badges_web":[],"can_see_constituent_badge_upsell":false,"has_constituent_badge":false,"sub_reply_parent_preview_context":null,"can_viewer_disable_preview":false,"is_hidden_by_content_owner":null,"www_layout_renderer":null,"sub_reply_parent_above_comment_author_context":null,"body":{"text":"Amen i receive in name of Jesus Christ","ranges":[]},"is_markdown_enabled":false,"can_comment":{"can_viewer_comment":false,"id":"ZmVlZGJhY2s6MTM0NDY5MjY4NTY5NjY5MF8xMzQ0OTQ0OTE5MDA0ODAw"},"inline_survey_config":null,"reply_parent_comment":null,"flat_threading_depth":0,"__typename":"Comment"},"cursor":"AQHRbX6nfWo53_KpealOGhX4wbiUfASBaSag3lbeVm2HVem0MOiwkkeKQcFTgiEKio1m4lBdqc6rBVSy_6tgTiQaFw"}],"is_initially_expanded":true,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":true,"comment_order":"TOPLEVEL","page_info":{"end_cursor":"AQHRcvjJIyNS7QoaJ6eHgm6eY4kCNGG_sSH4GP9kNiyzrVf7iaIFrBy7skSWBo_rSN6pbx6heaMtK_004sHatueQkA","has_next_page":true,"has_previous_page":false,"start_cursor":"AQHR5Vdeaz2sxW-m7Fz9zu1E9z9MQhhoQjWru69G5BKxHpLEuS0SFpvxaWbU-rEUqS8cOZ6x6mJAibcAlL0rWeK9LA"}},"can_viewer_react":false,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"feedback_typers":{"other_count":0},"default_comment_ordering":"toplevel","localized_comment_orderings":[{"description":"Affiche tous les commentaires, les plus anciens apparaissant en premier.","title":"Les plus anciens","value":"TOPLEVEL"},{"description":"Affiche les commentaires d\u2019amis et ceux ayant entra\u00een\u00e9 le plus de r\u00e9actions en premier.","title":"Les plus pertinents","value":"RANKED_THREADED"}]}},"extensions":{"is_final":true}},"sequence_number":0,"variables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MTM0NDY5MjY4NTY5NjY5MA==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661922137236375","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"incremental_chunks":[]}}],2],["RelayPrefetchedStreamCache","next",[],["adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafc1b1814359929564",{"__bbox":{"result":{"data":{"feedback":{"id":"ZmVlZGJhY2s6MjYwMDc2NDMyMzU0Mzc1MQ==","is_eligible_for_real_time_updates":false,"subscription_target_id":"2600764323543751","owning_profile":{"__typename":"Page","id":"300653326696613"},"num_localized_comment_orderings":2,"comment_count":{"total_count":329},"i18n_comment_count":"329","url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/2600764323543751\/","i18n_reaction_count":"4,3\u00a0K","important_reactors":{"nodes":[]},"reaction_count":{"count":4349},"viewer_actor":null,"viewer_feedback_reaction_info":null,"i18n_share_count":"73","share_count":{"count":73},"share_fbid":"2600764323543751","reactors":{"count":4349},"top_reactions":{"edges":[{"reaction_count":4156,"node":{"key":1,"id":"1635855486666999","localized_name":"J\u2019aime","reaction_type":"LIKE"},"i18n_reaction_count":"4,1\u00a0K"},{"reaction_count":145,"node":{"key":2,"id":"1678524932434102","localized_name":"J\u2019adore","reaction_type":"LOVE"},"i18n_reaction_count":"145"},{"reaction_count":27,"node":{"key":4,"id":"115940658764963","localized_name":"Haha","reaction_type":"HAHA"},"i18n_reaction_count":"27"},{"reaction_count":15,"node":{"key":3,"id":"478547315650144","localized_name":"Wouah","reaction_type":"WOW"},"i18n_reaction_count":"15"},{"reaction_count":3,"node":{"key":7,"id":"908563459236466","localized_name":"Triste","reaction_type":"SORRY"},"i18n_reaction_count":"3"},{"reaction_count":3,"node":{"key":8,"id":"444813342392137","localized_name":"Grrr","reaction_type":"ANGER"},"i18n_reaction_count":"3"}]},"associated_video":{"is_live_streaming":false,"is_profile_video":false,"id":"2600764323543751"},"video_view_count":45098,"video_view_count_reduced":"45\u00a0K","total_video_posts":1,"video_post_view_count":45063,"page_private_reply":null,"seen_by_count":{"count":null},"comment_share_context":null,"political_figure_data":null,"associated_group":null,"display_comments_count":{"count":321},"comments_disabled_notice":{"ranges":[],"text":"Les commentaires ont \u00e9t\u00e9 d\u00e9sactiv\u00e9s pour cette publication."},"can_viewer_comment":false,"comment_composer_placeholder":"Votre commentaire...","display_comments":{"after_count":51,"before_count":0,"count":321,"edges":[{"node":{"created_time":1578561355,"id":"Y29tbWVudDoyNjAwNzY0MzIzNTQzNzUxXzI2MDIxNzEzMDY3MzYzODY=","legacy_fbid":"2602171306736386","author":{"__typename":"User","id":"100038887583343","name":"Christian Atta","profile_picture_depth_0":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t31.0-1\/cp0\/c9.0.32.32a\/p32x32\/10506738_10150004552801856_220367501106153455_o.jpg?_nc_cat=1&_nc_ohc=SRFD-tQFLW4AQlk8pxNIfoJ7wIKQS2CY75AvmHG95ane25AfRHMgFQn1Q&_nc_ht=scontent-cdg2-1.xx&oh=7b3313c1dddfafa3eab0e65b70383a6b&oe=5E991E79"},"profile_picture_depth_1":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t31.0-1\/cp0\/c7.0.24.24a\/p24x24\/10506738_10150004552801856_220367501106153455_o.jpg?_nc_cat=1&_nc_ohc=SRFD-tQFLW4AQlk8pxNIfoJ7wIKQS2CY75AvmHG95ane25AfRHMgFQn1Q&_nc_ht=scontent-cdg2-1.xx&oh=295390c60347baffc3963ef9e857dcc4&oe=5EB27459"},"www_url":"https:\/\/www.facebook.com\/christian.atta.142","url":"https:\/\/www.facebook.com\/christian.atta.142","is_verified":false,"short_name":"Christian"},"is_author_weak_reference":false,"spam_display_mode":"none","attachments":[],"attached_story":null,"parent_post_story":{"id":"UzpfSTMwMDY1MzMyNjY5NjYxMzpWSzoyNjAwNzY0MzIzNTQzNzUx"},"group_comment_info":null,"legacy_token":"2600764323543751_2602171306736386","comment_menu_tooltip":null,"comment_menu_items":[],"is_author_banned_by_content_owner":false,"parent_feedback":{"id":"ZmVlZGJhY2s6MjYwMDc2NDMyMzU0Mzc1MQ==","viewer_acts_as_page":null,"can_viewer_ban_user":false},"create_detailed_report_uri":"https:\/\/www.facebook.com\/in_app_escalation\/?context=\u00257B\u002522session_id\u002522\u00253A\u0025224367239d-4e0b-4a8a-9eb4-39241e52ae94\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522feed\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522comment\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u0025222602171306736386\u002522\u00257D","us_structured_reporting_enabled":false,"can_viewer_share":false,"chat_to_buy":null,"edit_history":{"count":0},"feedback":{"id":"ZmVlZGJhY2s6MjYwMDc2NDMyMzU0Mzc1MV8yNjAyMTcxMzA2NzM2Mzg2","viewer_feedback_reaction_info":null,"viewer_actor":null,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"associated_video":null,"top_reactions":{"edges":[]},"reactors":{"count":0,"count_reduced":"0"},"page_private_reply":null,"can_viewer_react":false,"subscription_target_id":"2602171306736386","comment_composer_placeholder":"R\u00e9pondez...","can_viewer_comment":false,"comment_count":{"total_count":0},"comment_share_context":null,"share_fbid":"2602171306736386","political_figure_data":null,"associated_group":null,"display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"highlighted_comments":[],"is_initially_expanded":false,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":false,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}}},"page_admin_actor_info":null,"private_reply_context":null,"preferred_body":{"__typename":"TextWithEntities","translation_type":"ORIGINAL","delight_ranges":[],"ranges":[],"text":"Winners should come and win again and losers should come and start a good journey because if you fall down today doesn't mean is the end of your life remember that every human carry blood so why always you? Get closer to me and I will let you know that you are not always a looser +233248139763 \/+233509336468or WhatsApp me right now and save from obstacles forever. Am a powerful man with great helping hand for those who put trust on me because I don't force to help people if only you are ready for my help I will help you. I help people in terms of financial problems like money to start business or to pay deft, or lotto numbers to win, marriage problem, sickness, and many more contact me right now and save from poverty. +233509336468"},"translatability_for_viewer":{"source_dialect_name":"Anglais"},"translation_available_for_viewer":false,"url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/2600764323543751\/?comment_id=2602171306736386","identity_badges_web":[],"can_see_constituent_badge_upsell":false,"has_constituent_badge":false,"sub_reply_parent_preview_context":null,"can_viewer_disable_preview":false,"is_hidden_by_content_owner":null,"www_layout_renderer":null,"sub_reply_parent_above_comment_author_context":null,"body":{"text":"Winners should come and win again and losers should come and start a good journey because if you fall down today doesn't mean is the end of your life remember that every human carry blood so why always you? Get closer to me and I will let you know that you are not always a looser +233248139763 \/+233509336468or WhatsApp me right now and save from obstacles forever. Am a powerful man with great helping hand for those who put trust on me because I don't force to help people if only you are ready for my help I will help you. I help people in terms of financial problems like money to start business or to pay deft, or lotto numbers to win, marriage problem, sickness, and many more contact me right now and save from poverty. +233509336468","ranges":[]},"is_markdown_enabled":false,"can_comment":{"can_viewer_comment":false,"id":"ZmVlZGJhY2s6MjYwMDc2NDMyMzU0Mzc1MV8yNjAyMTcxMzA2NzM2Mzg2"},"inline_survey_config":null,"reply_parent_comment":null,"flat_threading_depth":0,"__typename":"Comment"},"cursor":"AQHRZCh5euf3L9AHjuYkejC67Ttxiw_fBAj2FyFlpjC15NgrAN_tepEVyIGjIwV7t_VmNEbYfInnHxknfwnXNqI8pQ"},{"node":{"created_time":1578559995,"id":"Y29tbWVudDoyNjAwNzY0MzIzNTQzNzUxXzI2MDIxNTc3MjAwNzEwNzg=","legacy_fbid":"2602157720071078","author":{"__typename":"User","id":"100043291383982","name":"Mis Iaba","profile_picture_depth_0":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/c0.0.32.32a\/p32x32\/82474880_139521127500933_8070795357992255488_n.jpg?_nc_cat=110&_nc_ohc=p4M7IwLwgVcAQmDn78nofg0D-lB3JF-T5UYoboRD6yKMJEswZ3OhyjfzQ&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=bf86a8237741027d5c3a0762b7bb3734&oe=5E9A190A"},"profile_picture_depth_1":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/c0.0.24.24a\/p24x24\/82474880_139521127500933_8070795357992255488_n.jpg?_nc_cat=110&_nc_ohc=p4M7IwLwgVcAQmDn78nofg0D-lB3JF-T5UYoboRD6yKMJEswZ3OhyjfzQ&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=85f1b9e76581f1b478f91f4fe25fa1d8&oe=5EA55051"},"www_url":null,"url":null,"is_verified":false,"short_name":"Mis"},"is_author_weak_reference":false,"spam_display_mode":"none","attachments":[],"attached_story":null,"parent_post_story":{"id":"UzpfSTMwMDY1MzMyNjY5NjYxMzpWSzoyNjAwNzY0MzIzNTQzNzUx"},"group_comment_info":null,"legacy_token":"2600764323543751_2602157720071078","comment_menu_tooltip":null,"comment_menu_items":[],"is_author_banned_by_content_owner":false,"parent_feedback":{"id":"ZmVlZGJhY2s6MjYwMDc2NDMyMzU0Mzc1MQ==","viewer_acts_as_page":null,"can_viewer_ban_user":false},"create_detailed_report_uri":"https:\/\/www.facebook.com\/in_app_escalation\/?context=\u00257B\u002522session_id\u002522\u00253A\u002522b446f2e0-601e-4257-8ae5-2f3ce427a9cf\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522feed\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522comment\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u0025222602157720071078\u002522\u00257D","us_structured_reporting_enabled":false,"can_viewer_share":false,"chat_to_buy":null,"edit_history":{"count":0},"feedback":{"id":"ZmVlZGJhY2s6MjYwMDc2NDMyMzU0Mzc1MV8yNjAyMTU3NzIwMDcxMDc4","viewer_feedback_reaction_info":null,"viewer_actor":null,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"associated_video":null,"top_reactions":{"edges":[]},"reactors":{"count":0,"count_reduced":"0"},"page_private_reply":null,"can_viewer_react":false,"subscription_target_id":"2602157720071078","comment_composer_placeholder":"R\u00e9pondez...","can_viewer_comment":false,"comment_count":{"total_count":0},"comment_share_context":null,"share_fbid":"2602157720071078","political_figure_data":null,"associated_group":null,"display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"highlighted_comments":[],"is_initially_expanded":false,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":false,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}}},"page_admin_actor_info":null,"private_reply_context":null,"preferred_body":{"__typename":"TextWithEntities","translation_type":"ORIGINAL","delight_ranges":[],"ranges":[],"text":"Nice \ud83d\udc9b"},"translatability_for_viewer":{"source_dialect_name":"Anglais"},"translation_available_for_viewer":false,"url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/2600764323543751\/?comment_id=2602157720071078","identity_badges_web":[],"can_see_constituent_badge_upsell":false,"has_constituent_badge":false,"sub_reply_parent_preview_context":null,"can_viewer_disable_preview":false,"is_hidden_by_content_owner":null,"www_layout_renderer":null,"sub_reply_parent_above_comment_author_context":null,"body":{"text":"Nice \ud83d\udc9b","ranges":[]},"is_markdown_enabled":false,"can_comment":{"can_viewer_comment":false,"id":"ZmVlZGJhY2s6MjYwMDc2NDMyMzU0Mzc1MV8yNjAyMTU3NzIwMDcxMDc4"},"inline_survey_config":null,"reply_parent_comment":null,"flat_threading_depth":0,"__typename":"Comment"},"cursor":"AQHRXw_IbdbfYVPwKNDxHcD6lmoNXHxJ_1fhzCb9qnOdrYV8Y1zRX0X62wGCfbfy4Ue6Zha2k-5ys38WjW44vx9PZg"}],"is_initially_expanded":true,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":true,"comment_order":"TOPLEVEL","page_info":{"end_cursor":"AQHRpRhd5zBS8RtLt9EyGvn5pOzY05Z4ZHz4Dn-4atmyJEbM6VX97vzAvPec4fStF6zxKP8IXrUGhSs1ixkboFOwmw","has_next_page":true,"has_previous_page":false,"start_cursor":"AQHRMcBXuXILWncF8LG-aQoDQd_KF8OGQ3AAPnWEdU3L2N6M9ttzF9_18nQoJsAmCoe2jy3FqWrDWA-UiJWPPBQK0g"}},"can_viewer_react":false,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"feedback_typers":{"other_count":0},"default_comment_ordering":"toplevel","localized_comment_orderings":[{"description":"Affiche tous les commentaires, les plus anciens apparaissant en premier.","title":"Les plus anciens","value":"TOPLEVEL"},{"description":"Affiche les commentaires d\u2019amis et ceux ayant entra\u00een\u00e9 le plus de r\u00e9actions en premier.","title":"Les plus pertinents","value":"RANKED_THREADED"}]}},"extensions":{"is_final":true}},"sequence_number":0,"variables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjYwMDc2NDMyMzU0Mzc1MQ==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2659889537439635","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"incremental_chunks":[]}}],2],["RelayPrefetchedStreamCache","next",[],["adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafc559c52a52894814",{"__bbox":{"result":{"data":{"feedback":{"id":"ZmVlZGJhY2s6MjkwODI0MjQ3MjUyOTUxMw==","is_eligible_for_real_time_updates":false,"subscription_target_id":"2908242472529513","owning_profile":{"__typename":"Page","id":"300653326696613"},"num_localized_comment_orderings":2,"comment_count":{"total_count":2},"i18n_comment_count":"2","url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/2908242472529513\/","i18n_reaction_count":"60","important_reactors":{"nodes":[]},"reaction_count":{"count":60},"viewer_actor":null,"viewer_feedback_reaction_info":null,"i18n_share_count":"7","share_count":{"count":7},"share_fbid":"2908242472529513","reactors":{"count":60},"top_reactions":{"edges":[{"reaction_count":55,"node":{"key":1,"id":"1635855486666999","localized_name":"J\u2019aime","reaction_type":"LIKE"},"i18n_reaction_count":"55"},{"reaction_count":2,"node":{"key":2,"id":"1678524932434102","localized_name":"J\u2019adore","reaction_type":"LOVE"},"i18n_reaction_count":"2"},{"reaction_count":2,"node":{"key":4,"id":"115940658764963","localized_name":"Haha","reaction_type":"HAHA"},"i18n_reaction_count":"2"},{"reaction_count":1,"node":{"key":3,"id":"478547315650144","localized_name":"Wouah","reaction_type":"WOW"},"i18n_reaction_count":"1"}]},"associated_video":{"is_live_streaming":false,"is_profile_video":false,"id":"2908242472529513"},"video_view_count":1951,"video_view_count_reduced":"1,9\u00a0K","total_video_posts":1,"video_post_view_count":1951,"page_private_reply":null,"seen_by_count":{"count":null},"comment_share_context":null,"political_figure_data":null,"associated_group":null,"display_comments_count":{"count":2},"comments_disabled_notice":{"ranges":[],"text":"Les commentaires ont \u00e9t\u00e9 d\u00e9sactiv\u00e9s pour cette publication."},"can_viewer_comment":false,"comment_composer_placeholder":"Votre commentaire...","display_comments":{"after_count":0,"before_count":0,"count":2,"edges":[{"node":{"created_time":1578526314,"id":"Y29tbWVudDoyOTA4MjQyNDcyNTI5NTEzXzI5MDgzMjU0MDU4NTQ1NTM=","legacy_fbid":"2908325405854553","author":{"__typename":"User","id":"100009042898424","name":"Robert Ting","profile_picture_depth_0":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/p32x32\/31936810_1947679225543488_2670852196433657856_n.jpg?_nc_cat=109&_nc_ohc=7WvbSCHLvxsAQkhljpp7OG7otb9tAa0uWiG-zKTrHakiTgayMsdQXqBlw&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=9d6f0e618ccea845884a0fcec985be9a&oe=5E9EC4FA"},"profile_picture_depth_1":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/p24x24\/31936810_1947679225543488_2670852196433657856_n.jpg?_nc_cat=109&_nc_ohc=7WvbSCHLvxsAQkhljpp7OG7otb9tAa0uWiG-zKTrHakiTgayMsdQXqBlw&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=15da71f11ab85c9a9eb12d09e4b85120&oe=5E91481D"},"www_url":"https:\/\/www.facebook.com\/people\/Robert-Ting\/100009042898424","url":"https:\/\/www.facebook.com\/people\/Robert-Ting\/100009042898424","is_verified":false,"short_name":"Robert"},"is_author_weak_reference":false,"spam_display_mode":"none","attachments":[],"attached_story":null,"parent_post_story":{"id":"UzpfSTMwMDY1MzMyNjY5NjYxMzpWSzoyOTA4MjQyNDcyNTI5NTEz"},"group_comment_info":null,"legacy_token":"2908242472529513_2908325405854553","comment_menu_tooltip":null,"comment_menu_items":[],"is_author_banned_by_content_owner":false,"parent_feedback":{"id":"ZmVlZGJhY2s6MjkwODI0MjQ3MjUyOTUxMw==","viewer_acts_as_page":null,"can_viewer_ban_user":false},"create_detailed_report_uri":"https:\/\/www.facebook.com\/in_app_escalation\/?context=\u00257B\u002522session_id\u002522\u00253A\u00252231ea5367-2b85-42a2-a0c9-83360baefdc1\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522feed\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522comment\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u0025222908325405854553\u002522\u00257D","us_structured_reporting_enabled":false,"can_viewer_share":false,"chat_to_buy":null,"edit_history":{"count":0},"feedback":{"id":"ZmVlZGJhY2s6MjkwODI0MjQ3MjUyOTUxM18yOTA4MzI1NDA1ODU0NTUz","viewer_feedback_reaction_info":null,"viewer_actor":null,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"associated_video":null,"top_reactions":{"edges":[{"reaction_count":1,"node":{"key":1,"id":"1635855486666999","reaction_type":"LIKE"}}]},"reactors":{"count":1,"count_reduced":"1"},"page_private_reply":null,"can_viewer_react":false,"subscription_target_id":"2908325405854553","comment_composer_placeholder":"R\u00e9pondez...","can_viewer_comment":false,"comment_count":{"total_count":0},"comment_share_context":null,"share_fbid":"2908325405854553","political_figure_data":null,"associated_group":null,"display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"highlighted_comments":[],"is_initially_expanded":false,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":false,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}}},"page_admin_actor_info":null,"private_reply_context":null,"preferred_body":{"__typename":"TextWithEntities","translation_type":"ORIGINAL","delight_ranges":[],"ranges":[],"text":"Freaking idiot it's not what you want it's what you did."},"translatability_for_viewer":{"source_dialect_name":"Anglais"},"translation_available_for_viewer":false,"url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/2908242472529513\/?comment_id=2908325405854553","identity_badges_web":[],"can_see_constituent_badge_upsell":false,"has_constituent_badge":false,"sub_reply_parent_preview_context":null,"can_viewer_disable_preview":false,"is_hidden_by_content_owner":null,"www_layout_renderer":null,"sub_reply_parent_above_comment_author_context":null,"body":{"text":"Freaking idiot it's not what you want it's what you did.","ranges":[]},"is_markdown_enabled":false,"can_comment":{"can_viewer_comment":false,"id":"ZmVlZGJhY2s6MjkwODI0MjQ3MjUyOTUxM18yOTA4MzI1NDA1ODU0NTUz"},"inline_survey_config":null,"reply_parent_comment":null,"flat_threading_depth":0,"__typename":"Comment"},"cursor":"AQHRYEYAyEyCQu-s4OHMQ8dTxIpbf4CBrspfYllViTgWxpoGVggLAczvsXDUx90aMUfttEDN-Mz-zm6guhAMO2-azw"}],"is_initially_expanded":true,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":true,"comment_order":"TOPLEVEL","page_info":{"end_cursor":"AQHRyHLbhH85z4Pjz2CVrUrFGVr2IQOZxcg4Q-RofL88RoGWuaL49HsDIKz5pB4owkd1ihSy1ZnH_WZGqkgyOTmeyQ","has_next_page":false,"has_previous_page":false,"start_cursor":"AQHRyHLbhH85z4Pjz2CVrUrFGVr2IQOZxcg4Q-RofL88RoGWuaL49HsDIKz5pB4owkd1ihSy1ZnH_WZGqkgyOTmeyQ"}},"can_viewer_react":false,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"feedback_typers":{"other_count":0},"default_comment_ordering":"toplevel","localized_comment_orderings":[{"description":"Affiche tous les commentaires, les plus anciens apparaissant en premier.","title":"Les plus anciens","value":"TOPLEVEL"},{"description":"Affiche les commentaires d\u2019amis et ceux ayant entra\u00een\u00e9 le plus de r\u00e9actions en premier.","title":"Les plus pertinents","value":"RANKED_THREADED"}]}},"extensions":{"is_final":true}},"sequence_number":0,"variables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjkwODI0MjQ3MjUyOTUxMw==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661948820567040","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"incremental_chunks":[]}}],2],["RelayPrefetchedStreamCache","next",[],["adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafc48ec78309168793",{"__bbox":{"result":{"data":{"feedback":{"id":"ZmVlZGJhY2s6NzI0MjgwODkxNDMyNjIw","is_eligible_for_real_time_updates":false,"subscription_target_id":"724280891432620","owning_profile":{"__typename":"Page","id":"300653326696613"},"num_localized_comment_orderings":2,"comment_count":{"total_count":2},"i18n_comment_count":"2","url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/724280891432620\/","i18n_reaction_count":"43","important_reactors":{"nodes":[]},"reaction_count":{"count":43},"viewer_actor":null,"viewer_feedback_reaction_info":null,"i18n_share_count":"15","share_count":{"count":15},"share_fbid":"724280891432620","reactors":{"count":43},"top_reactions":{"edges":[{"reaction_count":26,"node":{"key":1,"id":"1635855486666999","localized_name":"J\u2019aime","reaction_type":"LIKE"},"i18n_reaction_count":"26"},{"reaction_count":9,"node":{"key":3,"id":"478547315650144","localized_name":"Wouah","reaction_type":"WOW"},"i18n_reaction_count":"9"},{"reaction_count":4,"node":{"key":4,"id":"115940658764963","localized_name":"Haha","reaction_type":"HAHA"},"i18n_reaction_count":"4"},{"reaction_count":2,"node":{"key":7,"id":"908563459236466","localized_name":"Triste","reaction_type":"SORRY"},"i18n_reaction_count":"2"},{"reaction_count":2,"node":{"key":8,"id":"444813342392137","localized_name":"Grrr","reaction_type":"ANGER"},"i18n_reaction_count":"2"}]},"associated_video":{"is_live_streaming":false,"is_profile_video":false,"id":"724280891432620"},"video_view_count":3024,"video_view_count_reduced":"3\u00a0K","total_video_posts":1,"video_post_view_count":3008,"page_private_reply":null,"seen_by_count":{"count":null},"comment_share_context":null,"political_figure_data":null,"associated_group":null,"display_comments_count":{"count":2},"comments_disabled_notice":{"ranges":[],"text":"Les commentaires ont \u00e9t\u00e9 d\u00e9sactiv\u00e9s pour cette publication."},"can_viewer_comment":false,"comment_composer_placeholder":"Votre commentaire...","display_comments":{"after_count":0,"before_count":0,"count":2,"edges":[{"node":{"created_time":1578554605,"id":"Y29tbWVudDo3MjQyODA4OTE0MzI2MjBfNzI0NTUzMTM4MDcyMDYy","legacy_fbid":"724553138072062","author":{"__typename":"User","id":"100036073607729","name":"Fifita Leone","profile_picture_depth_0":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/c5.12.32.32a\/p43x43\/67506671_136702324208887_5886436340559511552_o.jpg?_nc_cat=102&_nc_ohc=g3LNP3KN1pMAQmdCrT6Q1rmpIbUN1xwv7R3t-ILAwLIoSVHZleDpK5ybA&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=46bf0ada5ef124b0a2ef7d0d76b9e8da&oe=5EA7F59C"},"profile_picture_depth_1":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/c4.9.24.24a\/p32x32\/67506671_136702324208887_5886436340559511552_o.jpg?_nc_cat=102&_nc_ohc=g3LNP3KN1pMAQmdCrT6Q1rmpIbUN1xwv7R3t-ILAwLIoSVHZleDpK5ybA&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=e47a0e1c846508722f3e25ea7762739b&oe=5EAD5232"},"www_url":"https:\/\/www.facebook.com\/fifita.leone.29","url":"https:\/\/www.facebook.com\/fifita.leone.29","is_verified":false,"short_name":"Fifita"},"is_author_weak_reference":false,"spam_display_mode":"none","attachments":[],"attached_story":null,"parent_post_story":{"id":"UzpfSTMwMDY1MzMyNjY5NjYxMzpWSzo3MjQyODA4OTE0MzI2MjA="},"group_comment_info":null,"legacy_token":"724280891432620_724553138072062","comment_menu_tooltip":null,"comment_menu_items":[],"is_author_banned_by_content_owner":false,"parent_feedback":{"id":"ZmVlZGJhY2s6NzI0MjgwODkxNDMyNjIw","viewer_acts_as_page":null,"can_viewer_ban_user":false},"create_detailed_report_uri":"https:\/\/www.facebook.com\/in_app_escalation\/?context=\u00257B\u002522session_id\u002522\u00253A\u0025222899ec2b-d647-4fc6-bb81-1da47d1959dd\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522feed\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522comment\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u002522724553138072062\u002522\u00257D","us_structured_reporting_enabled":false,"can_viewer_share":false,"chat_to_buy":null,"edit_history":{"count":0},"feedback":{"id":"ZmVlZGJhY2s6NzI0MjgwODkxNDMyNjIwXzcyNDU1MzEzODA3MjA2Mg==","viewer_feedback_reaction_info":null,"viewer_actor":null,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"associated_video":null,"top_reactions":{"edges":[]},"reactors":{"count":0,"count_reduced":"0"},"page_private_reply":null,"can_viewer_react":false,"subscription_target_id":"724553138072062","comment_composer_placeholder":"R\u00e9pondez...","can_viewer_comment":false,"comment_count":{"total_count":0},"comment_share_context":null,"share_fbid":"724553138072062","political_figure_data":null,"associated_group":null,"display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"highlighted_comments":[],"is_initially_expanded":false,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":false,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}}},"page_admin_actor_info":null,"private_reply_context":null,"preferred_body":{"__typename":"TextWithEntities","translation_type":"ORIGINAL","delight_ranges":[],"ranges":[],"text":"I'm thinking about do the something inside nzme Auckland haha"},"translatability_for_viewer":{"source_dialect_name":"Anglais"},"translation_available_for_viewer":false,"url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/724280891432620\/?comment_id=724553138072062","identity_badges_web":[],"can_see_constituent_badge_upsell":false,"has_constituent_badge":false,"sub_reply_parent_preview_context":null,"can_viewer_disable_preview":false,"is_hidden_by_content_owner":null,"www_layout_renderer":null,"sub_reply_parent_above_comment_author_context":null,"body":{"text":"I'm thinking about do the something inside nzme Auckland haha","ranges":[]},"is_markdown_enabled":false,"can_comment":{"can_viewer_comment":false,"id":"ZmVlZGJhY2s6NzI0MjgwODkxNDMyNjIwXzcyNDU1MzEzODA3MjA2Mg=="},"inline_survey_config":null,"reply_parent_comment":null,"flat_threading_depth":0,"__typename":"Comment"},"cursor":"AQHRrQj0B9aGPWJD3A8hKyHwih3Vi12wJGSLfpy4SpmUxZ72OLHUjBKJJpWP5TisMtVUd7rBPOA6ZOGFDU2_2mH4mQ"},{"node":{"created_time":1578547901,"id":"Y29tbWVudDo3MjQyODA4OTE0MzI2MjBfNzI0NTAwMDM4MDc3Mzcy","legacy_fbid":"724500038077372","author":{"__typename":"User","id":"100003626949340","name":"Chieng Lanbao","profile_picture_depth_0":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t31.0-1\/cp0\/p32x32\/25189046_1166749343455953_3081566399889680595_o.jpg?_nc_cat=102&_nc_ohc=rN66M1Sjy4gAQlQhPB_lrYLEPHuGT907FJsi497FROAhZf2fJzPtssA5A&_nc_ht=scontent-cdg2-1.xx&oh=c8ea67c0550d7cc6d0b77e840272b2bf&oe=5EA2F891"},"profile_picture_depth_1":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t31.0-1\/cp0\/p24x24\/25189046_1166749343455953_3081566399889680595_o.jpg?_nc_cat=102&_nc_ohc=rN66M1Sjy4gAQlQhPB_lrYLEPHuGT907FJsi497FROAhZf2fJzPtssA5A&_nc_ht=scontent-cdg2-1.xx&oh=6ee95b59d32da68d61e4c7dfa5a6dd36&oe=5E928776"},"www_url":null,"url":null,"is_verified":false,"short_name":"Lanbao"},"is_author_weak_reference":false,"spam_display_mode":"none","attachments":[],"attached_story":null,"parent_post_story":{"id":"UzpfSTMwMDY1MzMyNjY5NjYxMzpWSzo3MjQyODA4OTE0MzI2MjA="},"group_comment_info":null,"legacy_token":"724280891432620_724500038077372","comment_menu_tooltip":null,"comment_menu_items":[],"is_author_banned_by_content_owner":false,"parent_feedback":{"id":"ZmVlZGJhY2s6NzI0MjgwODkxNDMyNjIw","viewer_acts_as_page":null,"can_viewer_ban_user":false},"create_detailed_report_uri":"https:\/\/www.facebook.com\/in_app_escalation\/?context=\u00257B\u002522session_id\u002522\u00253A\u00252261f57119-b4c2-42fc-823d-49b8afc8e4a3\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522feed\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522comment\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u002522724500038077372\u002522\u00257D","us_structured_reporting_enabled":false,"can_viewer_share":false,"chat_to_buy":null,"edit_history":{"count":0},"feedback":{"id":"ZmVlZGJhY2s6NzI0MjgwODkxNDMyNjIwXzcyNDUwMDAzODA3NzM3Mg==","viewer_feedback_reaction_info":null,"viewer_actor":null,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"associated_video":null,"top_reactions":{"edges":[]},"reactors":{"count":0,"count_reduced":"0"},"page_private_reply":null,"can_viewer_react":false,"subscription_target_id":"724500038077372","comment_composer_placeholder":"R\u00e9pondez...","can_viewer_comment":false,"comment_count":{"total_count":0},"comment_share_context":null,"share_fbid":"724500038077372","political_figure_data":null,"associated_group":null,"display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"highlighted_comments":[],"is_initially_expanded":false,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":false,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}}},"page_admin_actor_info":null,"private_reply_context":null,"preferred_body":{"__typename":"TextWithEntities","translation_type":"ORIGINAL","delight_ranges":[],"ranges":[],"text":"Those western fcking police treated their citizen as animal, human rights lol :))"},"translatability_for_viewer":{"source_dialect_name":"Anglais"},"translation_available_for_viewer":false,"url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/724280891432620\/?comment_id=724500038077372","identity_badges_web":[],"can_see_constituent_badge_upsell":false,"has_constituent_badge":false,"sub_reply_parent_preview_context":null,"can_viewer_disable_preview":false,"is_hidden_by_content_owner":null,"www_layout_renderer":null,"sub_reply_parent_above_comment_author_context":null,"body":{"text":"Those western fcking police treated their citizen as animal, human rights lol :))","ranges":[]},"is_markdown_enabled":false,"can_comment":{"can_viewer_comment":false,"id":"ZmVlZGJhY2s6NzI0MjgwODkxNDMyNjIwXzcyNDUwMDAzODA3NzM3Mg=="},"inline_survey_config":null,"reply_parent_comment":null,"flat_threading_depth":0,"__typename":"Comment"},"cursor":"AQHRHBUiHHylxbz0gBKbJOyqCO283vya32YRDZXNbdzifSctSD7yedCzOBmP-lhHjGAoa3IVqW8knlJ7SN0hLZFxnA"}],"is_initially_expanded":true,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":true,"comment_order":"TOPLEVEL","page_info":{"end_cursor":"AQHR-pHEiBofJ6rM4SgPtD8WsY6cNC7EYJjmfdqMG5s_uHuxg9K3g0Vi_K2V0AszFi2XVI6WtIFZktt2CTx95zJirg","has_next_page":false,"has_previous_page":false,"start_cursor":"AQHRmH6Y7M86CkMTnQFv-Xggchmu9e5e-Fo3IpYegPnKynozhgxKSy3HDeqJ1DjJlcdn-s5fRRSSyIyfmHBJHx-6wg"}},"can_viewer_react":false,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"feedback_typers":{"other_count":0},"default_comment_ordering":"toplevel","localized_comment_orderings":[{"description":"Affiche tous les commentaires, les plus anciens apparaissant en premier.","title":"Les plus anciens","value":"TOPLEVEL"},{"description":"Affiche les commentaires d\u2019amis et ceux ayant entra\u00een\u00e9 le plus de r\u00e9actions en premier.","title":"Les plus pertinents","value":"RANKED_THREADED"}]}},"extensions":{"is_final":true}},"sequence_number":0,"variables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6NzI0MjgwODkxNDMyNjIw","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661965210565401","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"incremental_chunks":[]}}],2],["RelayPrefetchedStreamCache","next",[],["adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafc1d67f1555220785",{"__bbox":{"result":{"data":{"feedback":{"id":"ZmVlZGJhY2s6NjAzMDIwOTczODA3ODYx","is_eligible_for_real_time_updates":false,"subscription_target_id":"603020973807861","owning_profile":{"__typename":"Page","id":"300653326696613"},"num_localized_comment_orderings":2,"comment_count":{"total_count":9},"i18n_comment_count":"9","url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/603020973807861\/","i18n_reaction_count":"41","important_reactors":{"nodes":[]},"reaction_count":{"count":41},"viewer_actor":null,"viewer_feedback_reaction_info":null,"i18n_share_count":"5","share_count":{"count":5},"share_fbid":"603020973807861","reactors":{"count":41},"top_reactions":{"edges":[{"reaction_count":38,"node":{"key":1,"id":"1635855486666999","localized_name":"J\u2019aime","reaction_type":"LIKE"},"i18n_reaction_count":"38"},{"reaction_count":2,"node":{"key":4,"id":"115940658764963","localized_name":"Haha","reaction_type":"HAHA"},"i18n_reaction_count":"2"},{"reaction_count":1,"node":{"key":2,"id":"1678524932434102","localized_name":"J\u2019adore","reaction_type":"LOVE"},"i18n_reaction_count":"1"}]},"associated_video":{"is_live_streaming":false,"is_profile_video":false,"id":"603020973807861"},"video_view_count":1488,"video_view_count_reduced":"1,4\u00a0K","total_video_posts":1,"video_post_view_count":1488,"page_private_reply":null,"seen_by_count":{"count":null},"comment_share_context":null,"political_figure_data":null,"associated_group":null,"display_comments_count":{"count":9},"comments_disabled_notice":{"ranges":[],"text":"Les commentaires ont \u00e9t\u00e9 d\u00e9sactiv\u00e9s pour cette publication."},"can_viewer_comment":false,"comment_composer_placeholder":"Votre commentaire...","display_comments":{"after_count":6,"before_count":0,"count":9,"edges":[{"node":{"created_time":1578551086,"id":"Y29tbWVudDo2MDMwMjA5NzM4MDc4NjFfNjAzMzE0OTk3MTExNzky","legacy_fbid":"603314997111792","author":{"__typename":"User","id":"1620705315","name":"Jan Hartmann","profile_picture_depth_0":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/p32x32\/10341503_10203573039239497_5299202134327520805_n.jpg?_nc_cat=105&_nc_ohc=cf2btl-aHAsAQkrewlBF5kD7HhQ1_IA7u1Xil_f-hyFbsaD2icYAtjAvg&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=f2aaa0ca17e9991a4fafedce169706c1&oe=5E9A9213"},"profile_picture_depth_1":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/p24x24\/10341503_10203573039239497_5299202134327520805_n.jpg?_nc_cat=105&_nc_ohc=cf2btl-aHAsAQkrewlBF5kD7HhQ1_IA7u1Xil_f-hyFbsaD2icYAtjAvg&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=f83fe9fa976add57a81dc1754cd0f021&oe=5EA13C7C"},"www_url":"https:\/\/www.facebook.com\/jan.hartmann.969","url":"https:\/\/www.facebook.com\/jan.hartmann.969","is_verified":false,"short_name":"Jan"},"is_author_weak_reference":false,"spam_display_mode":"none","attachments":[],"attached_story":null,"parent_post_story":{"id":"UzpfSTMwMDY1MzMyNjY5NjYxMzpWSzo2MDMwMjA5NzM4MDc4NjE="},"group_comment_info":null,"legacy_token":"603020973807861_603314997111792","comment_menu_tooltip":null,"comment_menu_items":[],"is_author_banned_by_content_owner":false,"parent_feedback":{"id":"ZmVlZGJhY2s6NjAzMDIwOTczODA3ODYx","viewer_acts_as_page":null,"can_viewer_ban_user":false},"create_detailed_report_uri":"https:\/\/www.facebook.com\/in_app_escalation\/?context=\u00257B\u002522session_id\u002522\u00253A\u002522f1deac0b-1657-4a61-b5f5-0d9cbd2d25a0\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522feed\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522comment\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u002522603314997111792\u002522\u00257D","us_structured_reporting_enabled":false,"can_viewer_share":false,"chat_to_buy":null,"edit_history":{"count":0},"feedback":{"id":"ZmVlZGJhY2s6NjAzMDIwOTczODA3ODYxXzYwMzMxNDk5NzExMTc5Mg==","viewer_feedback_reaction_info":null,"viewer_actor":null,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"associated_video":null,"top_reactions":{"edges":[]},"reactors":{"count":0,"count_reduced":"0"},"page_private_reply":null,"can_viewer_react":false,"subscription_target_id":"603314997111792","comment_composer_placeholder":"R\u00e9pondez...","can_viewer_comment":false,"comment_count":{"total_count":0},"comment_share_context":null,"share_fbid":"603314997111792","political_figure_data":null,"associated_group":null,"display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"highlighted_comments":[],"is_initially_expanded":false,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":false,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}}},"page_admin_actor_info":null,"private_reply_context":null,"preferred_body":{"__typename":"TextWithEntities","translation_type":"ORIGINAL","delight_ranges":[],"ranges":[],"text":"I Bob and Matt, I heard he was going to put you on the front lines, go Trump. 2020, the best President ever! Everyone I talk to is voting for Trump!"},"translatability_for_viewer":{"source_dialect_name":"Anglais"},"translation_available_for_viewer":false,"url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/603020973807861\/?comment_id=603314997111792","identity_badges_web":[],"can_see_constituent_badge_upsell":false,"has_constituent_badge":false,"sub_reply_parent_preview_context":null,"can_viewer_disable_preview":false,"is_hidden_by_content_owner":null,"www_layout_renderer":null,"sub_reply_parent_above_comment_author_context":null,"body":{"text":"I Bob and Matt, I heard he was going to put you on the front lines, go Trump. 2020, the best President ever! Everyone I talk to is voting for Trump!","ranges":[]},"is_markdown_enabled":false,"can_comment":{"can_viewer_comment":false,"id":"ZmVlZGJhY2s6NjAzMDIwOTczODA3ODYxXzYwMzMxNDk5NzExMTc5Mg=="},"inline_survey_config":null,"reply_parent_comment":null,"flat_threading_depth":0,"__typename":"Comment"},"cursor":"AQHRgspcXWjXDEk-DQCc9cRhObqXOGsm9i3EbL1z2vIcpPquRIgvukMP0vITkXsrg8hVbhftaakBjJdnkdc-oUtaaQ"},{"node":{"created_time":1578540853,"id":"Y29tbWVudDo2MDMwMjA5NzM4MDc4NjFfNjAzMjI4MTEwNDUzODE0","legacy_fbid":"603228110453814","author":{"__typename":"User","id":"100008298663015","name":"\u09b6\u09a4 \u09ae\u09be\u09a8\u09c1\u09b7","profile_picture_depth_0":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/p32x32\/81716141_2611463879140209_5194468911050915840_n.jpg?_nc_cat=102&_nc_ohc=MNyD-tFxY5YAQmUPs3HIHsDyGR9OkEAKV9Hh9j7s4jqlsij_1QEhZvAgg&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=c6565a1b3652fa1d4a749a2f7454b3b4&oe=5E9062A9"},"profile_picture_depth_1":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/p24x24\/81716141_2611463879140209_5194468911050915840_n.jpg?_nc_cat=102&_nc_ohc=MNyD-tFxY5YAQmUPs3HIHsDyGR9OkEAKV9Hh9j7s4jqlsij_1QEhZvAgg&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=2030d36ccece6245f5a297dc3a85d434&oe=5EA16F4E"},"www_url":"https:\/\/www.facebook.com\/shubankar.chatterjee.3","url":"https:\/\/www.facebook.com\/shubankar.chatterjee.3","is_verified":false,"short_name":"\u09b6\u09a4"},"is_author_weak_reference":false,"spam_display_mode":"none","attachments":[{"style_list":["animated_image_share","image_share","share","fallback"],"url":"https:\/\/l.facebook.com\/l.php?u=https\u00253A\u00252F\u00252Fmedia3.giphy.com\u00252Fmedia\u00252Fv1.Y2lkPTEyMGMwMTQ3ZWMwYWEzZTIyMmQ2MWQ5MmNkMTQ0YTIwYzMxY2IxMzdhMzQ5MDBjNA\u00252F3oEjHAUOqG3lSS0f1C\u00252Fgiphy.gif&h=AT0nV9tAw44OWCUUv8vz45fVCyPP3n_bdgAWagFS-iRVdVfjbNG7I51-hjwBq0w7BhVCD5O6lBsU576iyTAA0bnVVd00YhJOpQyf7th0_cpJDAPCNTJOrsLx6BvvfCUCrDHRP0hDobZYJXulIDdEglDNAy8&s=1","source":{"text":"media3.giphy.com"},"media":{"__typename":"GenericAttachmentMedia","animated_image_attribution":"GIPHY","id":"2682712828454821","gifAnimatedImage_396":{"height":360,"uri":"https:\/\/external-cdg2-1.xx.fbcdn.net\/safe_image.php?d=AQD0lRmh0Lbk5TS_&url=https\u00253A\u00252F\u00252Fmedia3.giphy.com\u00252Fmedia\u00252Fv1.Y2lkPTEyMGMwMTQ3ZWMwYWEzZTIyMmQ2MWQ5MmNkMTQ0YTIwYzMxY2IxMzdhMzQ5MDBjNA\u00252F3oEjHAUOqG3lSS0f1C\u00252Fgiphy.gif&ext=gif&_nc_hash=AQACnLPe7JoLjK8O","width":480},"image_396":{"height":297,"uri":"https:\/\/external-cdg2-1.xx.fbcdn.net\/safe_image.php?d=AQBKGBkPYoHAx51V&w=396&h=297&url=https\u00253A\u00252F\u00252Fmedia3.giphy.com\u00252Fmedia\u00252Fv1.Y2lkPTEyMGMwMTQ3ZWMwYWEzZTIyMmQ2MWQ5MmNkMTQ0YTIwYzMxY2IxMzdhMzQ5MDBjNA\u00252F3oEjHAUOqG3lSS0f1C\u00252Fgiphy.gif&_nc_hash=AQDmO-VOCufYoPI-","width":396},"webPAnimatedImage_396":{"height":360,"uri":"https:\/\/external-cdg2-1.xx.fbcdn.net\/safe_image.php?d=AQD0lRmh0Lbk5TS_&url=https\u00253A\u00252F\u00252Fmedia3.giphy.com\u00252Fmedia\u00252Fv1.Y2lkPTEyMGMwMTQ3ZWMwYWEzZTIyMmQ2MWQ5MmNkMTQ0YTIwYzMxY2IxMzdhMzQ5MDBjNA\u00252F3oEjHAUOqG3lSS0f1C\u00252Fgiphy.gif&ext=gif&_nc_hash=AQACnLPe7JoLjK8O","width":480},"fallback_image":{"height":98,"uri":"https:\/\/external-cdg2-1.xx.fbcdn.net\/safe_image.php?d=AQADgNfJpFfbcjqN&w=98&h=98&url=https\u00253A\u00252F\u00252Fmedia3.giphy.com\u00252Fmedia\u00252Fv1.Y2lkPTEyMGMwMTQ3ZWMwYWEzZTIyMmQ2MWQ5MmNkMTQ0YTIwYzMxY2IxMzdhMzQ5MDBjNA\u00252F3oEjHAUOqG3lSS0f1C\u00252Fgiphy.gif&cfs=1&_nc_hash=AQDfOQepuY22_HRd","width":98},"is_playable":true},"target":{"__typename":"ExternalUrl","id":"226547524203272:2628750090744921","url":"https:\/\/l.facebook.com\/l.php?u=https\u00253A\u00252F\u00252Fmedia3.giphy.com\u00252Fmedia\u00252Fv1.Y2lkPTEyMGMwMTQ3ZWMwYWEzZTIyMmQ2MWQ5MmNkMTQ0YTIwYzMxY2IxMzdhMzQ5MDBjNA\u00252F3oEjHAUOqG3lSS0f1C\u00252Fgiphy.gif&h=AT0nV9tAw44OWCUUv8vz45fVCyPP3n_bdgAWagFS-iRVdVfjbNG7I51-hjwBq0w7BhVCD5O6lBsU576iyTAA0bnVVd00YhJOpQyf7th0_cpJDAPCNTJOrsLx6BvvfCUCrDHRP0hDobZYJXulIDdEglDNAy8&s=1"},"style_infos":[{"__typename":"ExternalShareAttachmentStyleInfo"}],"title_with_entities":{"text":"media3.giphy.com"},"action_links":[],"tracking":"{}","sticker":{"__typename":"GenericAttachmentMedia","id":"2682712828454821"},"style_type_renderer_blue":null}],"attached_story":null,"parent_post_story":{"id":"UzpfSTMwMDY1MzMyNjY5NjYxMzpWSzo2MDMwMjA5NzM4MDc4NjE="},"group_comment_info":null,"legacy_token":"603020973807861_603228110453814","comment_menu_tooltip":null,"comment_menu_items":[],"is_author_banned_by_content_owner":false,"parent_feedback":{"id":"ZmVlZGJhY2s6NjAzMDIwOTczODA3ODYx","viewer_acts_as_page":null,"can_viewer_ban_user":false},"create_detailed_report_uri":"https:\/\/www.facebook.com\/in_app_escalation\/?context=\u00257B\u002522session_id\u002522\u00253A\u002522838d64f2-49c4-403c-af31-33314aaab1fa\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522feed\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522comment\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u002522603228110453814\u002522\u00257D","us_structured_reporting_enabled":false,"can_viewer_share":false,"chat_to_buy":null,"edit_history":{"count":0},"feedback":{"id":"ZmVlZGJhY2s6NjAzMDIwOTczODA3ODYxXzYwMzIyODExMDQ1MzgxNA==","viewer_feedback_reaction_info":null,"viewer_actor":null,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"associated_video":null,"top_reactions":{"edges":[]},"reactors":{"count":0,"count_reduced":"0"},"page_private_reply":null,"can_viewer_react":false,"subscription_target_id":"603228110453814","comment_composer_placeholder":"R\u00e9pondez...","can_viewer_comment":false,"comment_count":{"total_count":0},"comment_share_context":null,"share_fbid":"603228110453814","political_figure_data":null,"associated_group":null,"display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"highlighted_comments":[],"is_initially_expanded":false,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":false,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}}},"page_admin_actor_info":null,"private_reply_context":null,"preferred_body":null,"translatability_for_viewer":{"source_dialect_name":"Anglais"},"translation_available_for_viewer":false,"url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/603020973807861\/?comment_id=603228110453814","identity_badges_web":[],"can_see_constituent_badge_upsell":false,"has_constituent_badge":false,"sub_reply_parent_preview_context":null,"can_viewer_disable_preview":false,"is_hidden_by_content_owner":null,"www_layout_renderer":null,"sub_reply_parent_above_comment_author_context":null,"body":null,"is_markdown_enabled":false,"can_comment":{"can_viewer_comment":false,"id":"ZmVlZGJhY2s6NjAzMDIwOTczODA3ODYxXzYwMzIyODExMDQ1MzgxNA=="},"inline_survey_config":null,"reply_parent_comment":null,"flat_threading_depth":0,"__typename":"Comment"},"cursor":"AQHRP6rld81LDF1YM7RbyAWNAqChy7bOpO0M5DX1D71JRTFbgCKktIt_hdBbQpwL1a0cMDTXv4t0-EvMnjJNI96DdQ"}],"is_initially_expanded":true,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":true,"comment_order":"TOPLEVEL","page_info":{"end_cursor":"AQHR1Tst5bP2bInb2lLdLhM1FZlMK7GCCkfB2qkRmkRTunNajaUlwm040gZHk-llsqe_DhY8yY06Ck83Qn3VzDFNrQ","has_next_page":true,"has_previous_page":false,"start_cursor":"AQHRr1nFiv2sxq0CJC--UNa1DTdP6rx43ro_zNWIjDnY2ZzJybxLHO1CL9xHvBZ-5QWomPhTOpY2eIrRs-xoo-tZXw"}},"can_viewer_react":false,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"feedback_typers":{"other_count":0},"default_comment_ordering":"toplevel","localized_comment_orderings":[{"description":"Affiche tous les commentaires, les plus anciens apparaissant en premier.","title":"Les plus anciens","value":"TOPLEVEL"},{"description":"Affiche les commentaires d\u2019amis et ceux ayant entra\u00een\u00e9 le plus de r\u00e9actions en premier.","title":"Les plus pertinents","value":"RANKED_THREADED"}]}},"extensions":{"is_final":true}},"sequence_number":0,"variables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6NjAzMDIwOTczODA3ODYx","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661835413911714","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"incremental_chunks":[]}}],2],["RelayPrefetchedStreamCache","next",[],["adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafc1c31f3227794836",{"__bbox":{"result":{"data":{"feedback":{"id":"ZmVlZGJhY2s6MjUyNTUyMDI1NzU1NzUyMQ==","is_eligible_for_real_time_updates":false,"subscription_target_id":"2525520257557521","owning_profile":{"__typename":"Page","id":"300653326696613"},"num_localized_comment_orderings":2,"comment_count":{"total_count":12},"i18n_comment_count":"12","url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/2525520257557521\/","i18n_reaction_count":"53","important_reactors":{"nodes":[]},"reaction_count":{"count":53},"viewer_actor":null,"viewer_feedback_reaction_info":null,"i18n_share_count":"5","share_count":{"count":5},"share_fbid":"2525520257557521","reactors":{"count":53},"top_reactions":{"edges":[{"reaction_count":43,"node":{"key":1,"id":"1635855486666999","localized_name":"J\u2019aime","reaction_type":"LIKE"},"i18n_reaction_count":"43"},{"reaction_count":6,"node":{"key":4,"id":"115940658764963","localized_name":"Haha","reaction_type":"HAHA"},"i18n_reaction_count":"6"},{"reaction_count":2,"node":{"key":2,"id":"1678524932434102","localized_name":"J\u2019adore","reaction_type":"LOVE"},"i18n_reaction_count":"2"},{"reaction_count":2,"node":{"key":8,"id":"444813342392137","localized_name":"Grrr","reaction_type":"ANGER"},"i18n_reaction_count":"2"}]},"associated_video":{"is_live_streaming":false,"is_profile_video":false,"id":"2525520257557521"},"video_view_count":4812,"video_view_count_reduced":"4,8\u00a0K","total_video_posts":1,"video_post_view_count":4812,"page_private_reply":null,"seen_by_count":{"count":null},"comment_share_context":null,"political_figure_data":null,"associated_group":null,"display_comments_count":{"count":10},"comments_disabled_notice":{"ranges":[],"text":"Les commentaires ont \u00e9t\u00e9 d\u00e9sactiv\u00e9s pour cette publication."},"can_viewer_comment":false,"comment_composer_placeholder":"Votre commentaire...","display_comments":{"after_count":7,"before_count":0,"count":10,"edges":[{"node":{"created_time":1578551251,"id":"Y29tbWVudDoyNTI1NTIwMjU3NTU3NTIxXzI1MjYyNTQzNzQxNTA3NzY=","legacy_fbid":"2526254374150776","author":{"__typename":"User","id":"1620705315","name":"Jan Hartmann","profile_picture_depth_0":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/p32x32\/10341503_10203573039239497_5299202134327520805_n.jpg?_nc_cat=105&_nc_ohc=cf2btl-aHAsAQkrewlBF5kD7HhQ1_IA7u1Xil_f-hyFbsaD2icYAtjAvg&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=f2aaa0ca17e9991a4fafedce169706c1&oe=5E9A9213"},"profile_picture_depth_1":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/p24x24\/10341503_10203573039239497_5299202134327520805_n.jpg?_nc_cat=105&_nc_ohc=cf2btl-aHAsAQkrewlBF5kD7HhQ1_IA7u1Xil_f-hyFbsaD2icYAtjAvg&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=f83fe9fa976add57a81dc1754cd0f021&oe=5EA13C7C"},"www_url":"https:\/\/www.facebook.com\/jan.hartmann.969","url":"https:\/\/www.facebook.com\/jan.hartmann.969","is_verified":false,"short_name":"Jan"},"is_author_weak_reference":false,"spam_display_mode":"none","attachments":[],"attached_story":null,"parent_post_story":{"id":"UzpfSTMwMDY1MzMyNjY5NjYxMzpWSzoyNTI1NTIwMjU3NTU3NTIx"},"group_comment_info":null,"legacy_token":"2525520257557521_2526254374150776","comment_menu_tooltip":null,"comment_menu_items":[],"is_author_banned_by_content_owner":false,"parent_feedback":{"id":"ZmVlZGJhY2s6MjUyNTUyMDI1NzU1NzUyMQ==","viewer_acts_as_page":null,"can_viewer_ban_user":false},"create_detailed_report_uri":"https:\/\/www.facebook.com\/in_app_escalation\/?context=\u00257B\u002522session_id\u002522\u00253A\u00252239f07637-c3dd-48e6-af93-06ccc07c33b4\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522feed\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522comment\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u0025222526254374150776\u002522\u00257D","us_structured_reporting_enabled":false,"can_viewer_share":false,"chat_to_buy":null,"edit_history":{"count":0},"feedback":{"id":"ZmVlZGJhY2s6MjUyNTUyMDI1NzU1NzUyMV8yNTI2MjU0Mzc0MTUwNzc2","viewer_feedback_reaction_info":null,"viewer_actor":null,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"associated_video":null,"top_reactions":{"edges":[]},"reactors":{"count":0,"count_reduced":"0"},"page_private_reply":null,"can_viewer_react":false,"subscription_target_id":"2526254374150776","comment_composer_placeholder":"R\u00e9pondez...","can_viewer_comment":false,"comment_count":{"total_count":0},"comment_share_context":null,"share_fbid":"2526254374150776","political_figure_data":null,"associated_group":null,"display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"highlighted_comments":[],"is_initially_expanded":false,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":false,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}}},"page_admin_actor_info":null,"private_reply_context":null,"preferred_body":{"__typename":"TextWithEntities","translation_type":"ORIGINAL","delight_ranges":[],"ranges":[],"text":"I can tell why you don\u2019t like him! Go back to your country you idiot!"},"translatability_for_viewer":{"source_dialect_name":"Anglais"},"translation_available_for_viewer":false,"url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/2525520257557521\/?comment_id=2526254374150776","identity_badges_web":[],"can_see_constituent_badge_upsell":false,"has_constituent_badge":false,"sub_reply_parent_preview_context":null,"can_viewer_disable_preview":false,"is_hidden_by_content_owner":null,"www_layout_renderer":null,"sub_reply_parent_above_comment_author_context":null,"body":{"text":"I can tell why you don\u2019t like him! Go back to your country you idiot!","ranges":[]},"is_markdown_enabled":false,"can_comment":{"can_viewer_comment":false,"id":"ZmVlZGJhY2s6MjUyNTUyMDI1NzU1NzUyMV8yNTI2MjU0Mzc0MTUwNzc2"},"inline_survey_config":null,"reply_parent_comment":null,"flat_threading_depth":0,"__typename":"Comment"},"cursor":"AQHRWOHvOjaQ7iynnNjuJo_RZZ0SStJ2BM0vfgFUp7MqGXD01StoSpwi8c6aUTkrrDB5-f2g1ny4AbsGVMw2Mc06gA"},{"node":{"created_time":1578548822,"id":"Y29tbWVudDoyNTI1NTIwMjU3NTU3NTIxXzI1MjYxOTk5NjQxNTYyMTc=","legacy_fbid":"2526199964156217","author":{"__typename":"User","id":"534689236","name":"Kin Yaw","profile_picture_depth_0":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/p32x32\/47065837_10157526937464237_9052096716844564480_n.jpg?_nc_cat=103&_nc_ohc=Xya1IUOcZmIAQlN_y6vUkvVE0e6miiUxJRJSyVisrQ_Vo-qt2siKr4uPA&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=d44c0761b9a311151211cf073c26d640&oe=5EB0AB47"},"profile_picture_depth_1":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/p24x24\/47065837_10157526937464237_9052096716844564480_n.jpg?_nc_cat=103&_nc_ohc=Xya1IUOcZmIAQlN_y6vUkvVE0e6miiUxJRJSyVisrQ_Vo-qt2siKr4uPA&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=29451063aa430f126bd4666cd9c98105&oe=5E981428"},"www_url":null,"url":null,"is_verified":false,"short_name":"Kin"},"is_author_weak_reference":false,"spam_display_mode":"none","attachments":[],"attached_story":null,"parent_post_story":{"id":"UzpfSTMwMDY1MzMyNjY5NjYxMzpWSzoyNTI1NTIwMjU3NTU3NTIx"},"group_comment_info":null,"legacy_token":"2525520257557521_2526199964156217","comment_menu_tooltip":null,"comment_menu_items":[],"is_author_banned_by_content_owner":false,"parent_feedback":{"id":"ZmVlZGJhY2s6MjUyNTUyMDI1NzU1NzUyMQ==","viewer_acts_as_page":null,"can_viewer_ban_user":false},"create_detailed_report_uri":"https:\/\/www.facebook.com\/in_app_escalation\/?context=\u00257B\u002522session_id\u002522\u00253A\u002522e84fb68b-6daa-493c-81a8-df169399f92c\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522feed\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522comment\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u0025222526199964156217\u002522\u00257D","us_structured_reporting_enabled":false,"can_viewer_share":false,"chat_to_buy":null,"edit_history":{"count":0},"feedback":{"id":"ZmVlZGJhY2s6MjUyNTUyMDI1NzU1NzUyMV8yNTI2MTk5OTY0MTU2MjE3","viewer_feedback_reaction_info":null,"viewer_actor":null,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"associated_video":null,"top_reactions":{"edges":[]},"reactors":{"count":0,"count_reduced":"0"},"page_private_reply":null,"can_viewer_react":false,"subscription_target_id":"2526199964156217","comment_composer_placeholder":"R\u00e9pondez...","can_viewer_comment":false,"comment_count":{"total_count":0},"comment_share_context":null,"share_fbid":"2526199964156217","political_figure_data":null,"associated_group":null,"display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"highlighted_comments":[],"is_initially_expanded":false,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":false,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}}},"page_admin_actor_info":null,"private_reply_context":null,"preferred_body":{"__typename":"TextWithEntities","translation_type":"ORIGINAL","delight_ranges":[],"ranges":[],"text":"\ud83e\udd21"},"translatability_for_viewer":{"source_dialect_name":"Anglais"},"translation_available_for_viewer":false,"url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/2525520257557521\/?comment_id=2526199964156217","identity_badges_web":[],"can_see_constituent_badge_upsell":false,"has_constituent_badge":false,"sub_reply_parent_preview_context":null,"can_viewer_disable_preview":false,"is_hidden_by_content_owner":null,"www_layout_renderer":null,"sub_reply_parent_above_comment_author_context":null,"body":{"text":"\ud83e\udd21","ranges":[]},"is_markdown_enabled":false,"can_comment":{"can_viewer_comment":false,"id":"ZmVlZGJhY2s6MjUyNTUyMDI1NzU1NzUyMV8yNTI2MTk5OTY0MTU2MjE3"},"inline_survey_config":null,"reply_parent_comment":null,"flat_threading_depth":0,"__typename":"Comment"},"cursor":"AQHRJxorZtihNJaBCThT9ATxZzUU_w7yJ-z31sy8xo5ku94xUPFV25tzY4jkPus9FRQgRFitphdyuv2HCXQEQP7img"}],"is_initially_expanded":true,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":true,"comment_order":"TOPLEVEL","page_info":{"end_cursor":"AQHRmUmE6KH_8_mZi2HFZhyLw1tAZHkftawyhVG2VdS927gtwi1YLr8QK9HPBfO7lj0yHuzwvHP9WgaVIMi5pBrFBA","has_next_page":true,"has_previous_page":false,"start_cursor":"AQHR12OodBoiXMjy6H3N1NJ57c9FcThYbhPjE2pVpsqwR-VlKb5z42Y4VJTw5lhp7ofBp6lzA0MF-wfYyJ9nQmV7yQ"}},"can_viewer_react":false,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"feedback_typers":{"other_count":0},"default_comment_ordering":"toplevel","localized_comment_orderings":[{"description":"Affiche tous les commentaires, les plus anciens apparaissant en premier.","title":"Les plus anciens","value":"TOPLEVEL"},{"description":"Affiche les commentaires d\u2019amis et ceux ayant entra\u00een\u00e9 le plus de r\u00e9actions en premier.","title":"Les plus pertinents","value":"RANKED_THREADED"}]}},"extensions":{"is_final":true}},"sequence_number":0,"variables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MjUyNTUyMDI1NzU1NzUyMQ==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661862420575680","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"incremental_chunks":[]}}],2],["RelayPrefetchedStreamCache","next",[],["adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafc19ed03506741867",{"__bbox":{"result":{"data":{"feedback":{"id":"ZmVlZGJhY2s6MTA1NDE2MjUxODI3MTE1MA==","is_eligible_for_real_time_updates":false,"subscription_target_id":"1054162518271150","owning_profile":{"__typename":"Page","id":"300653326696613"},"num_localized_comment_orderings":2,"comment_count":{"total_count":33},"i18n_comment_count":"33","url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/1054162518271150\/","i18n_reaction_count":"76","important_reactors":{"nodes":[]},"reaction_count":{"count":76},"viewer_actor":null,"viewer_feedback_reaction_info":null,"i18n_share_count":"4","share_count":{"count":4},"share_fbid":"1054162518271150","reactors":{"count":76},"top_reactions":{"edges":[{"reaction_count":52,"node":{"key":1,"id":"1635855486666999","localized_name":"J\u2019aime","reaction_type":"LIKE"},"i18n_reaction_count":"52"},{"reaction_count":20,"node":{"key":4,"id":"115940658764963","localized_name":"Haha","reaction_type":"HAHA"},"i18n_reaction_count":"20"},{"reaction_count":3,"node":{"key":2,"id":"1678524932434102","localized_name":"J\u2019adore","reaction_type":"LOVE"},"i18n_reaction_count":"3"},{"reaction_count":1,"node":{"key":8,"id":"444813342392137","localized_name":"Grrr","reaction_type":"ANGER"},"i18n_reaction_count":"1"}]},"associated_video":{"is_live_streaming":false,"is_profile_video":false,"id":"1054162518271150"},"video_view_count":4310,"video_view_count_reduced":"4,3\u00a0K","total_video_posts":1,"video_post_view_count":4304,"page_private_reply":null,"seen_by_count":{"count":null},"comment_share_context":null,"political_figure_data":null,"associated_group":null,"display_comments_count":{"count":24},"comments_disabled_notice":{"ranges":[],"text":"Les commentaires ont \u00e9t\u00e9 d\u00e9sactiv\u00e9s pour cette publication."},"can_viewer_comment":false,"comment_composer_placeholder":"Votre commentaire...","display_comments":{"after_count":21,"before_count":0,"count":24,"edges":[{"node":{"created_time":1578549755,"id":"Y29tbWVudDoxMDU0MTYyNTE4MjcxMTUwXzEwNTQ0NTcyNzgyNDE2NzQ=","legacy_fbid":"1054457278241674","author":{"__typename":"User","id":"1620705315","name":"Jan Hartmann","profile_picture_depth_0":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/p32x32\/10341503_10203573039239497_5299202134327520805_n.jpg?_nc_cat=105&_nc_ohc=cf2btl-aHAsAQkrewlBF5kD7HhQ1_IA7u1Xil_f-hyFbsaD2icYAtjAvg&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=f2aaa0ca17e9991a4fafedce169706c1&oe=5E9A9213"},"profile_picture_depth_1":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/p24x24\/10341503_10203573039239497_5299202134327520805_n.jpg?_nc_cat=105&_nc_ohc=cf2btl-aHAsAQkrewlBF5kD7HhQ1_IA7u1Xil_f-hyFbsaD2icYAtjAvg&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=f83fe9fa976add57a81dc1754cd0f021&oe=5EA13C7C"},"www_url":"https:\/\/www.facebook.com\/jan.hartmann.969","url":"https:\/\/www.facebook.com\/jan.hartmann.969","is_verified":false,"short_name":"Jan"},"is_author_weak_reference":false,"spam_display_mode":"none","attachments":[],"attached_story":null,"parent_post_story":{"id":"UzpfSTMwMDY1MzMyNjY5NjYxMzpWSzoxMDU0MTYyNTE4MjcxMTUw"},"group_comment_info":null,"legacy_token":"1054162518271150_1054457278241674","comment_menu_tooltip":null,"comment_menu_items":[],"is_author_banned_by_content_owner":false,"parent_feedback":{"id":"ZmVlZGJhY2s6MTA1NDE2MjUxODI3MTE1MA==","viewer_acts_as_page":null,"can_viewer_ban_user":false},"create_detailed_report_uri":"https:\/\/www.facebook.com\/in_app_escalation\/?context=\u00257B\u002522session_id\u002522\u00253A\u0025220be8fa63-f8d5-4636-b872-566f4c2b1c67\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522feed\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522comment\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u0025221054457278241674\u002522\u00257D","us_structured_reporting_enabled":false,"can_viewer_share":false,"chat_to_buy":null,"edit_history":{"count":0},"feedback":{"id":"ZmVlZGJhY2s6MTA1NDE2MjUxODI3MTE1MF8xMDU0NDU3Mjc4MjQxNjc0","viewer_feedback_reaction_info":null,"viewer_actor":null,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"associated_video":null,"top_reactions":{"edges":[]},"reactors":{"count":0,"count_reduced":"0"},"page_private_reply":null,"can_viewer_react":false,"subscription_target_id":"1054457278241674","comment_composer_placeholder":"R\u00e9pondez...","can_viewer_comment":false,"comment_count":{"total_count":0},"comment_share_context":null,"share_fbid":"1054457278241674","political_figure_data":null,"associated_group":null,"display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"highlighted_comments":[],"is_initially_expanded":false,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":false,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}}},"page_admin_actor_info":null,"private_reply_context":null,"preferred_body":{"__typename":"TextWithEntities","translation_type":"ORIGINAL","delight_ranges":[],"ranges":[],"text":"Anthony, you are an idiot!"},"translatability_for_viewer":{"source_dialect_name":"Anglais"},"translation_available_for_viewer":false,"url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/1054162518271150\/?comment_id=1054457278241674","identity_badges_web":[],"can_see_constituent_badge_upsell":false,"has_constituent_badge":false,"sub_reply_parent_preview_context":null,"can_viewer_disable_preview":false,"is_hidden_by_content_owner":null,"www_layout_renderer":null,"sub_reply_parent_above_comment_author_context":null,"body":{"text":"Anthony, you are an idiot!","ranges":[]},"is_markdown_enabled":false,"can_comment":{"can_viewer_comment":false,"id":"ZmVlZGJhY2s6MTA1NDE2MjUxODI3MTE1MF8xMDU0NDU3Mjc4MjQxNjc0"},"inline_survey_config":null,"reply_parent_comment":null,"flat_threading_depth":0,"__typename":"Comment"},"cursor":"AQHRPZCf4wk4fEfp46AQDyEoOyW27l2SBOp_AhgQT5WIaBHF6zZf1iw35Qim1cv81EycVWfXU5GpqiMwGj89ysS4VA"},{"node":{"created_time":1578546780,"id":"Y29tbWVudDoxMDU0MTYyNTE4MjcxMTUwXzEwNTQ0Mjk5ODQ5MTEwNzA=","legacy_fbid":"1054429984911070","author":{"__typename":"User","id":"100002722246330","name":"Chibuike Orji Amah","profile_picture_depth_0":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/cp0\/c0.0.32.32a\/p32x32\/82097853_2297608147006571_5482405580159057920_n.jpg?_nc_cat=107&_nc_ohc=v0mAwR-5T4MAQng69xkzwmAalDMWEPyB9-kvTx6zHRF3b66VnXF_XGcAg&_nc_ht=scontent-cdg2-1.xx&oh=a54332a9145634bb7f1b9282adcec2c3&oe=5EB112AB"},"profile_picture_depth_1":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/cp0\/c0.0.24.24a\/p24x24\/82097853_2297608147006571_5482405580159057920_n.jpg?_nc_cat=107&_nc_ohc=v0mAwR-5T4MAQng69xkzwmAalDMWEPyB9-kvTx6zHRF3b66VnXF_XGcAg&_nc_ht=scontent-cdg2-1.xx&oh=a4bdb14352a239139c5830c61cef37b5&oe=5EAA4EE5"},"www_url":"https:\/\/www.facebook.com\/chibuikeorjiamah","url":"https:\/\/www.facebook.com\/chibuikeorjiamah","is_verified":false,"short_name":"Chibuike"},"is_author_weak_reference":false,"spam_display_mode":"none","attachments":[],"attached_story":null,"parent_post_story":{"id":"UzpfSTMwMDY1MzMyNjY5NjYxMzpWSzoxMDU0MTYyNTE4MjcxMTUw"},"group_comment_info":null,"legacy_token":"1054162518271150_1054429984911070","comment_menu_tooltip":null,"comment_menu_items":[],"is_author_banned_by_content_owner":false,"parent_feedback":{"id":"ZmVlZGJhY2s6MTA1NDE2MjUxODI3MTE1MA==","viewer_acts_as_page":null,"can_viewer_ban_user":false},"create_detailed_report_uri":"https:\/\/www.facebook.com\/in_app_escalation\/?context=\u00257B\u002522session_id\u002522\u00253A\u00252279456146-57a9-40fd-932c-395c864d7d7c\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522feed\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522comment\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u0025221054429984911070\u002522\u00257D","us_structured_reporting_enabled":false,"can_viewer_share":false,"chat_to_buy":null,"edit_history":{"count":0},"feedback":{"id":"ZmVlZGJhY2s6MTA1NDE2MjUxODI3MTE1MF8xMDU0NDI5OTg0OTExMDcw","viewer_feedback_reaction_info":null,"viewer_actor":null,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"associated_video":null,"top_reactions":{"edges":[{"reaction_count":1,"node":{"key":4,"id":"115940658764963","reaction_type":"HAHA"}}]},"reactors":{"count":1,"count_reduced":"1"},"page_private_reply":null,"can_viewer_react":false,"subscription_target_id":"1054429984911070","comment_composer_placeholder":"R\u00e9pondez...","can_viewer_comment":false,"comment_count":{"total_count":0},"comment_share_context":null,"share_fbid":"1054429984911070","political_figure_data":null,"associated_group":null,"display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"highlighted_comments":[],"is_initially_expanded":false,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":false,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}}},"page_admin_actor_info":null,"private_reply_context":null,"preferred_body":{"__typename":"TextWithEntities","translation_type":"ORIGINAL","delight_ranges":[],"ranges":[],"text":"I stand with Trump \ud83d\udcaf \u2714\ufe0f\nNo shaking!"},"translatability_for_viewer":{"source_dialect_name":"Anglais"},"translation_available_for_viewer":false,"url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/1054162518271150\/?comment_id=1054429984911070","identity_badges_web":[],"can_see_constituent_badge_upsell":false,"has_constituent_badge":false,"sub_reply_parent_preview_context":null,"can_viewer_disable_preview":false,"is_hidden_by_content_owner":null,"www_layout_renderer":null,"sub_reply_parent_above_comment_author_context":null,"body":{"text":"I stand with Trump \ud83d\udcaf \u2714\ufe0f\nNo shaking!","ranges":[]},"is_markdown_enabled":false,"can_comment":{"can_viewer_comment":false,"id":"ZmVlZGJhY2s6MTA1NDE2MjUxODI3MTE1MF8xMDU0NDI5OTg0OTExMDcw"},"inline_survey_config":null,"reply_parent_comment":null,"flat_threading_depth":0,"__typename":"Comment"},"cursor":"AQHRF8V_XPZX7IUy8Ca0H2JbYwtCIlLjlzqOxA8c6T2RkqMFSJ5OdhJYBdFun5LzEElgHZ4bq8W9GTOcVv4Vl0HC5Q"}],"is_initially_expanded":true,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":true,"comment_order":"TOPLEVEL","page_info":{"end_cursor":"AQHR0CJ--NUdh-Xtr_dBQOqi2PJL7Is-Iy9n-iGGWdTu1jhdIOfLMRiY_aIVTvDk-e4RSVg3_obEG7uXzJgFMrY4EQ","has_next_page":true,"has_previous_page":false,"start_cursor":"AQHRrq8HJYC546jEAGBB-suwiG9liyVz6VSvHChJT7N_UGwQJTCugW7bNkHm_-LskuqB8yFxgZNEUQ5cn-B0N2VoSg"}},"can_viewer_react":false,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"feedback_typers":{"other_count":0},"default_comment_ordering":"toplevel","localized_comment_orderings":[{"description":"Affiche tous les commentaires, les plus anciens apparaissant en premier.","title":"Les plus anciens","value":"TOPLEVEL"},{"description":"Affiche les commentaires d\u2019amis et ceux ayant entra\u00een\u00e9 le plus de r\u00e9actions en premier.","title":"Les plus pertinents","value":"RANKED_THREADED"}]}},"extensions":{"is_final":true}},"sequence_number":0,"variables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6MTA1NDE2MjUxODI3MTE1MA==","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2661896813905574","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"incremental_chunks":[]}}],2],["RelayPrefetchedStreamCache","next",[],["adp_UnauthenticatedUFIRootQueryRelayPreloader_5e16fafc465f18f35064426",{"__bbox":{"result":{"data":{"feedback":{"id":"ZmVlZGJhY2s6NDU4NTY3ODcxNjk0NjU5","is_eligible_for_real_time_updates":false,"subscription_target_id":"458567871694659","owning_profile":{"__typename":"Page","id":"300653326696613"},"num_localized_comment_orderings":2,"comment_count":{"total_count":13},"i18n_comment_count":"13","url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/458567871694659\/","i18n_reaction_count":"181","important_reactors":{"nodes":[]},"reaction_count":{"count":181},"viewer_actor":null,"viewer_feedback_reaction_info":null,"i18n_share_count":"24","share_count":{"count":24},"share_fbid":"458567871694659","reactors":{"count":181},"top_reactions":{"edges":[{"reaction_count":176,"node":{"key":1,"id":"1635855486666999","localized_name":"J\u2019aime","reaction_type":"LIKE"},"i18n_reaction_count":"176"},{"reaction_count":3,"node":{"key":2,"id":"1678524932434102","localized_name":"J\u2019adore","reaction_type":"LOVE"},"i18n_reaction_count":"3"},{"reaction_count":1,"node":{"key":7,"id":"908563459236466","localized_name":"Triste","reaction_type":"SORRY"},"i18n_reaction_count":"1"},{"reaction_count":1,"node":{"key":8,"id":"444813342392137","localized_name":"Grrr","reaction_type":"ANGER"},"i18n_reaction_count":"1"}]},"associated_video":{"is_live_streaming":false,"is_profile_video":false,"id":"458567871694659"},"video_view_count":5273,"video_view_count_reduced":"5,2\u00a0K","total_video_posts":1,"video_post_view_count":5270,"page_private_reply":null,"seen_by_count":{"count":null},"comment_share_context":null,"political_figure_data":null,"associated_group":null,"display_comments_count":{"count":12},"comments_disabled_notice":{"ranges":[],"text":"Les commentaires ont \u00e9t\u00e9 d\u00e9sactiv\u00e9s pour cette publication."},"can_viewer_comment":false,"comment_composer_placeholder":"Votre commentaire...","display_comments":{"after_count":9,"before_count":0,"count":12,"edges":[{"node":{"created_time":1578512614,"id":"Y29tbWVudDo0NTg1Njc4NzE2OTQ2NTlfNDU5Mjg1NjU4Mjg5NTQ3","legacy_fbid":"459285658289547","author":{"__typename":"User","id":"100002722246330","name":"Chibuike Orji Amah","profile_picture_depth_0":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/cp0\/c0.0.32.32a\/p32x32\/82097853_2297608147006571_5482405580159057920_n.jpg?_nc_cat=107&_nc_ohc=v0mAwR-5T4MAQng69xkzwmAalDMWEPyB9-kvTx6zHRF3b66VnXF_XGcAg&_nc_ht=scontent-cdg2-1.xx&oh=a54332a9145634bb7f1b9282adcec2c3&oe=5EB112AB"},"profile_picture_depth_1":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/cp0\/c0.0.24.24a\/p24x24\/82097853_2297608147006571_5482405580159057920_n.jpg?_nc_cat=107&_nc_ohc=v0mAwR-5T4MAQng69xkzwmAalDMWEPyB9-kvTx6zHRF3b66VnXF_XGcAg&_nc_ht=scontent-cdg2-1.xx&oh=a4bdb14352a239139c5830c61cef37b5&oe=5EAA4EE5"},"www_url":"https:\/\/www.facebook.com\/chibuikeorjiamah","url":"https:\/\/www.facebook.com\/chibuikeorjiamah","is_verified":false,"short_name":"Chibuike"},"is_author_weak_reference":false,"spam_display_mode":"none","attachments":[],"attached_story":null,"parent_post_story":{"id":"UzpfSTMwMDY1MzMyNjY5NjYxMzpWSzo0NTg1Njc4NzE2OTQ2NTk="},"group_comment_info":null,"legacy_token":"458567871694659_459285658289547","comment_menu_tooltip":null,"comment_menu_items":[],"is_author_banned_by_content_owner":false,"parent_feedback":{"id":"ZmVlZGJhY2s6NDU4NTY3ODcxNjk0NjU5","viewer_acts_as_page":null,"can_viewer_ban_user":false},"create_detailed_report_uri":"https:\/\/www.facebook.com\/in_app_escalation\/?context=\u00257B\u002522session_id\u002522\u00253A\u002522db95a869-948d-4455-b9ec-fc4d44e5f627\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522feed\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522comment\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u002522459285658289547\u002522\u00257D","us_structured_reporting_enabled":false,"can_viewer_share":false,"chat_to_buy":null,"edit_history":{"count":0},"feedback":{"id":"ZmVlZGJhY2s6NDU4NTY3ODcxNjk0NjU5XzQ1OTI4NTY1ODI4OTU0Nw==","viewer_feedback_reaction_info":null,"viewer_actor":null,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"associated_video":null,"top_reactions":{"edges":[{"reaction_count":1,"node":{"key":4,"id":"115940658764963","reaction_type":"HAHA"}}]},"reactors":{"count":1,"count_reduced":"1"},"page_private_reply":null,"can_viewer_react":false,"subscription_target_id":"459285658289547","comment_composer_placeholder":"R\u00e9pondez...","can_viewer_comment":false,"comment_count":{"total_count":0},"comment_share_context":null,"share_fbid":"459285658289547","political_figure_data":null,"associated_group":null,"display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"highlighted_comments":[],"is_initially_expanded":false,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":false,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}}},"page_admin_actor_info":null,"private_reply_context":null,"preferred_body":{"__typename":"TextWithEntities","translation_type":"ORIGINAL","delight_ranges":[],"ranges":[],"text":"I stand with Trump \ud83d\udcaf\u2714\ufe0f"},"translatability_for_viewer":{"source_dialect_name":"Anglais"},"translation_available_for_viewer":false,"url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/458567871694659\/?comment_id=459285658289547","identity_badges_web":[],"can_see_constituent_badge_upsell":false,"has_constituent_badge":false,"sub_reply_parent_preview_context":null,"can_viewer_disable_preview":false,"is_hidden_by_content_owner":null,"www_layout_renderer":null,"sub_reply_parent_above_comment_author_context":null,"body":{"text":"I stand with Trump \ud83d\udcaf\u2714\ufe0f","ranges":[]},"is_markdown_enabled":false,"can_comment":{"can_viewer_comment":false,"id":"ZmVlZGJhY2s6NDU4NTY3ODcxNjk0NjU5XzQ1OTI4NTY1ODI4OTU0Nw=="},"inline_survey_config":null,"reply_parent_comment":null,"flat_threading_depth":0,"__typename":"Comment"},"cursor":"AQHR4gj-_pTpFFIXvRMSj8dsXvGmdbFSBlEJapOCCPIxsPr6hx7hcpaFugobQ_c9p91L3vLrM0nov1wBPin69b1TYQ"},{"node":{"created_time":1578488646,"id":"Y29tbWVudDo0NTg1Njc4NzE2OTQ2NTlfNDU5MDAzNzI0OTg0NDA3","legacy_fbid":"459003724984407","author":{"__typename":"User","id":"100003063919257","name":"Demas Mobiles","profile_picture_depth_0":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/cp0\/c0.0.32.32a\/p32x32\/71810263_2278949378883837_8087434104246632448_o.jpg?_nc_cat=110&_nc_ohc=sOquBg7I-P8AQnXsHCz3WRntiLp8S43PRQn-ht-l6f7dxq60TqYjQe3Qg&_nc_ht=scontent-cdg2-1.xx&oh=525da9eccc22502f9a9f08278934412c&oe=5E92A089"},"profile_picture_depth_1":{"uri":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t1.0-1\/cp0\/c0.0.24.24a\/p24x24\/71810263_2278949378883837_8087434104246632448_o.jpg?_nc_cat=110&_nc_ohc=sOquBg7I-P8AQnXsHCz3WRntiLp8S43PRQn-ht-l6f7dxq60TqYjQe3Qg&_nc_ht=scontent-cdg2-1.xx&oh=02bc0e0d04f9a430fc84cf925fab4548&oe=5E9AE3C7"},"www_url":"https:\/\/www.facebook.com\/demas.mobiles","url":"https:\/\/www.facebook.com\/demas.mobiles","is_verified":false,"short_name":"Demas"},"is_author_weak_reference":false,"spam_display_mode":"none","attachments":[{"style_list":["share","fallback"],"url":"https:\/\/l.facebook.com\/l.php?u=https\u00253A\u00252F\u00252Fyoutu.be\u00252FiWjLH7MPCt0&h=AT36kFkqOejVqGNrnbZGcDc9LybmkpZJtfC3vrgZWaUnzKY1ZIgSZM55Ll_6RWdHxGIyif6FQ-C9uJqS5Uutbc8v8FaNjVF5Nl0JCkZuHBq3OsqZstoAF8_LraLvfVk5X7hg4v4YShvMoeaWxHICdhPmLOQ&s=1","source":{"text":"youtube.com"},"media":{"__typename":"GenericAttachmentMedia","animated_image_attribution":null,"id":"2707003266029225","gifAnimatedImage_396":null,"image_396":{"height":222,"uri":"https:\/\/external-cdg2-1.xx.fbcdn.net\/safe_image.php?d=AQAoYWaSnf1BPn9S&w=396&h=222&url=https\u00253A\u00252F\u00252Fi.ytimg.com\u00252Fvi\u00252FiWjLH7MPCt0\u00252Fmaxresdefault.jpg&sx=0&sy=1&sw=1280&sh=718&_nc_hash=AQBC-76phHsyW3za","width":394},"webPAnimatedImage_396":null,"fallback_image":{"height":98,"uri":"https:\/\/external-cdg2-1.xx.fbcdn.net\/safe_image.php?d=AQCmhlPg5r45E7Kv&w=98&h=98&url=https\u00253A\u00252F\u00252Fi.ytimg.com\u00252Fvi\u00252FiWjLH7MPCt0\u00252Fmaxresdefault.jpg&cfs=1&sx=380&sy=0&sw=720&sh=720&_nc_hash=AQBWiMcgZmxry2rl","width":98},"is_playable":true},"target":{"__typename":"ExternalUrl","id":"226547524203272:2472557072856399","url":"https:\/\/l.facebook.com\/l.php?u=https\u00253A\u00252F\u00252Fyoutu.be\u00252FiWjLH7MPCt0&h=AT36kFkqOejVqGNrnbZGcDc9LybmkpZJtfC3vrgZWaUnzKY1ZIgSZM55Ll_6RWdHxGIyif6FQ-C9uJqS5Uutbc8v8FaNjVF5Nl0JCkZuHBq3OsqZstoAF8_LraLvfVk5X7hg4v4YShvMoeaWxHICdhPmLOQ&s=1"},"style_infos":[{"__typename":"ExternalShareAttachmentStyleInfo"}],"title_with_entities":{"text":"Demasmobiles - Nonstop"},"action_links":[],"tracking":"{}","sticker":{"__typename":"GenericAttachmentMedia","id":"2707003266029225"},"style_type_renderer_blue":null}],"attached_story":null,"parent_post_story":{"id":"UzpfSTMwMDY1MzMyNjY5NjYxMzpWSzo0NTg1Njc4NzE2OTQ2NTk="},"group_comment_info":null,"legacy_token":"458567871694659_459003724984407","comment_menu_tooltip":null,"comment_menu_items":[],"is_author_banned_by_content_owner":false,"parent_feedback":{"id":"ZmVlZGJhY2s6NDU4NTY3ODcxNjk0NjU5","viewer_acts_as_page":null,"can_viewer_ban_user":false},"create_detailed_report_uri":"https:\/\/www.facebook.com\/in_app_escalation\/?context=\u00257B\u002522session_id\u002522\u00253A\u002522147dcf3d-cdc8-4fc5-a362-60e9e2673b30\u002522\u00252C\u002522type\u002522\u00253A2\u00252C\u002522story_location\u002522\u00253A\u002522feed\u002522\u00252C\u002522entry_point\u002522\u00253A\u002522comment\u002522\u00252C\u002522reportable_ent_token\u002522\u00253A\u002522459003724984407\u002522\u00257D","us_structured_reporting_enabled":false,"can_viewer_share":false,"chat_to_buy":null,"edit_history":{"count":0},"feedback":{"id":"ZmVlZGJhY2s6NDU4NTY3ODcxNjk0NjU5XzQ1OTAwMzcyNDk4NDQwNw==","viewer_feedback_reaction_info":null,"viewer_actor":null,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"associated_video":null,"top_reactions":{"edges":[]},"reactors":{"count":0,"count_reduced":"0"},"page_private_reply":null,"can_viewer_react":false,"subscription_target_id":"459003724984407","comment_composer_placeholder":"R\u00e9pondez...","can_viewer_comment":false,"comment_count":{"total_count":0},"comment_share_context":null,"share_fbid":"459003724984407","political_figure_data":null,"associated_group":null,"display_comments":{"after_count":0,"before_count":0,"count":0,"edges":[],"highlighted_comments":[],"is_initially_expanded":false,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":false,"comment_order":"TOPLEVEL","page_info":{"end_cursor":null,"has_next_page":false,"has_previous_page":false,"start_cursor":null}}},"page_admin_actor_info":null,"private_reply_context":null,"preferred_body":{"__typename":"TextWithEntities","translation_type":"ORIGINAL","delight_ranges":[],"ranges":[{"__typename":"EntityAtRange","entity":{"__typename":"ExternalUrl","url":"https:\/\/l.facebook.com\/l.php?u=https\u00253A\u00252F\u00252Fyoutu.be\u00252FiWjLH7MPCt0&h=AT0F7XDnp22xzo5cPrzriN9RIP5p4UrkRLxFu38B0FlUtAAvJVx8ZgiRpPO9gswS94E_-7rRkY0JqrQsDoGnxw1P41ubQzJ_KSfiYGEJIVim3p2BC_1zrReDUhAtkz5sdPVxulowCWrKUTc&s=1","id":"NjQyMTgzOTU5MjA4MTA3Omh0dHBzXGEvL3lvdXR1LmJlL2lXakxIN01QQ3QwOjo6Og==","can_skip_redirect":true},"entity_is_weak_reference":false,"length":28,"offset":118},{"__typename":"EntityAtRange","entity":{"__typename":"ExternalUrl","url":"https:\/\/l.facebook.com\/l.php?u=https\u00253A\u00252F\u00252Fcitytrend.com.ng\u00252Fmusic-demasmobiles-nonstop\u00252F&h=AT0xCb3wvaqCHkEn--uSbHU6VytChXw5lmlMualpwpe5QqaL1b-DC4V3VqcslOqiebA6N2ACQRjTElAhVtDEgPihBbzesEmKlrL7xk_xyUOwkfaABgYV3TGVZXxB5WnHOGY7e1ssBPMS7mc&s=1","id":"NjQyMTgzOTU5MjA4MTA3Omh0dHBzXGEvL2NpdHl0cmVuZC5jb20ubmcvbXVzaWMtZGVtYXNtb2JpbGVzLW5vbnN0b3AvOjo6Og==","can_skip_redirect":true},"entity_is_weak_reference":false,"length":52,"offset":184},{"__typename":"EntityAtRange","entity":{"__typename":"ExternalUrl","url":"https:\/\/l.facebook.com\/l.php?u=https\u00253A\u00252F\u00252F9jadailyfeeds.com.ng\u00252F2019\u00252F11\u00252Fnonstop-by-demas-mobiles\u00252F&h=AT3fGj8C-XJJjVT3jwz-XtorA04rNg-pBNpm4FRf6gxkx7qVypnph9V7wmLVM6w1vlqggWDginiqYxPbibmJAt2gzpK_Jmfc20GtiyibiyLCyjaOplVvccSUgbSMcUJIunwmyxmWhfRSCI0&s=1","id":"NjQyMTgzOTU5MjA4MTA3Omh0dHBzXGEvLzlqYWRhaWx5ZmVlZHMuY29tLm5nLzIwMTkvMTEvbm9uc3RvcC1ieS1kZW1hcy1tb2JpbGVzLzo6Ojo=","can_skip_redirect":true},"entity_is_weak_reference":false,"length":62,"offset":238},{"__typename":"EntityAtRange","entity":{"__typename":"ExternalUrl","url":"https:\/\/l.facebook.com\/l.php?u=https\u00253A\u00252F\u00252Fwww.instagram.com\u00252Finvites\u00252Fcontact\u00252F\u00253Fi\u00253D12t6au30i4a88\u002526utm_content\u00253D1tirezn&h=AT1Nw1ArXs9Q5JwEEuFeXDj0DrwcFMoCc-NHJSd_UROjj0kmZwN_TXkxTqfIMwFlTdOsrlTk4Cn5EqGEGZcEIT6hVeXSn9NCcVNNBwEp5mYvfq_OAsu8CgGNIsWJ-Xe3I42xp8sMWBkOUKs&s=1","id":"NjQyMTgzOTU5MjA4MTA3Omh0dHBzXGEvL3d3dy5pbnN0YWdyYW0uY29tL2ludml0ZXMvY29udGFjdC8\/aT0xMnQ2YXUzMGk0YTg4JnV0bVxiY29udGVudD0xdGlyZXpuOjo6Og==","can_skip_redirect":true},"entity_is_weak_reference":false,"length":78,"offset":419},{"__typename":"EntityAtRange","entity":{"__typename":"ExternalUrl","url":"https:\/\/l.facebook.com\/l.php?u=https\u00253A\u00252F\u00252F9jadailyfeeds.com.ng\u00252F&h=AT1mjcgl2XNAayYUzyj2RbEpl7ynRmS4EZuDXnsq2VxzrMoH5kLTITH3DsHyofK5Lm_9iaZssLRA7jvbY3oP3pqTL60Yz8YWB6psqNRV85yK4rSxCdXR2kCz_JEBggvAZgLMWxBxHCaZeac&s=1","id":"NjQyMTgzOTU5MjA4MTA3Omh0dHBzXGEvLzlqYWRhaWx5ZmVlZHMuY29tLm5nLzo6Ojo=","can_skip_redirect":true},"entity_is_weak_reference":false,"length":28,"offset":666}],"text":"Still on the Non-Stop video thing fans\n Click on the link below to subscribe for\n free and watch \n\n https:\/\/youtu.be\/iWjLH7MPCt0\n\nHere is same of the audio links\ud83d\udc47\ud83d\udc47\ud83d\udc47\n\nhttps:\/\/citytrend.com.ng\/music-demasmobiles-nonstop\/\n\nhttps:\/\/9jadailyfeeds.com.ng\/2019\/11\/nonstop-by-demas-mobiles\/\n\n Follow me on Instagram\u27a1\n\ud83d\udc47\ud83d\udc47\ud83d\udc47\ud83d\udc47\nI'm on Instagram as \u0040demasmobiles. Install the app to follow my photos and videos. https:\/\/www.instagram.com\/invites\/contact\/?i=12t6au30i4a88&utm_content=1tirezn\n\n\u0040Demasmobiles\nFacebook\u27a1demasmobiles\nTwitter\u27a1demasmobiles official\nWhatsApp\u27a107068021665\n STAY LOVED\u270c\u270c\nHowever don't for to be visiting this Honourable Hot site\ud83d\udc47\ud83d\udc47\ud83d\udc47\n https:\/\/9jadailyfeeds.com.ng \nTo get every of your online needs , AS FOLLOW\n-Music Promotion\n-Video Promote\n-Biography Advert \nAnd Lot more\nThis site is well Loaded and it a truly Dailyfeeds and Choice of human wants . Hurry up and visit this Platform, is always available."},"translatability_for_viewer":{"source_dialect_name":"Anglais"},"translation_available_for_viewer":false,"url":"https:\/\/www.facebook.com\/cgtnamerica\/videos\/458567871694659\/?comment_id=459003724984407","identity_badges_web":[],"can_see_constituent_badge_upsell":false,"has_constituent_badge":false,"sub_reply_parent_preview_context":null,"can_viewer_disable_preview":false,"is_hidden_by_content_owner":null,"www_layout_renderer":null,"sub_reply_parent_above_comment_author_context":null,"body":{"text":"Still on the Non-Stop video thing fans\n Click on the link below to subscribe for\n free and watch \n\n https:\/\/youtu.be\/iWjLH7MPCt0\n\nHere is same of the audio links\ud83d\udc47\ud83d\udc47\ud83d\udc47\n\nhttps:\/\/citytrend.com.ng\/music-demasmobiles-nonstop\/\n\nhttps:\/\/9jadailyfeeds.com.ng\/2019\/11\/nonstop-by-demas-mobiles\/\n\n Follow me on Instagram\u27a1\n\ud83d\udc47\ud83d\udc47\ud83d\udc47\ud83d\udc47\nI'm on Instagram as \u0040demasmobiles. Install the app to follow my photos and videos. https:\/\/www.instagram.com\/invites\/contact\/?i=12t6au30i4a88&utm_content=1tirezn\n\n\u0040Demasmobiles\nFacebook\u27a1demasmobiles\nTwitter\u27a1demasmobiles official\nWhatsApp\u27a107068021665\n STAY LOVED\u270c\u270c\nHowever don't for to be visiting this Honourable Hot site\ud83d\udc47\ud83d\udc47\ud83d\udc47\n https:\/\/9jadailyfeeds.com.ng \nTo get every of your online needs , AS FOLLOW\n-Music Promotion\n-Video Promote\n-Biography Advert \nAnd Lot more\nThis site is well Loaded and it a truly Dailyfeeds and Choice of human wants . Hurry up and visit this Platform, is always available.","ranges":[{"__typename":"EntityAtRange","entity":{"__typename":"ExternalUrl","id":"NjQyMTgzOTU5MjA4MTA3Omh0dHBzXGEvL3lvdXR1LmJlL2lXakxIN01QQ3QwOjo6Og=="},"entity_is_weak_reference":false,"length":28,"offset":118},{"__typename":"EntityAtRange","entity":{"__typename":"ExternalUrl","id":"NjQyMTgzOTU5MjA4MTA3Omh0dHBzXGEvL2NpdHl0cmVuZC5jb20ubmcvbXVzaWMtZGVtYXNtb2JpbGVzLW5vbnN0b3AvOjo6Og=="},"entity_is_weak_reference":false,"length":52,"offset":184},{"__typename":"EntityAtRange","entity":{"__typename":"ExternalUrl","id":"NjQyMTgzOTU5MjA4MTA3Omh0dHBzXGEvLzlqYWRhaWx5ZmVlZHMuY29tLm5nLzIwMTkvMTEvbm9uc3RvcC1ieS1kZW1hcy1tb2JpbGVzLzo6Ojo="},"entity_is_weak_reference":false,"length":62,"offset":238},{"__typename":"EntityAtRange","entity":{"__typename":"ExternalUrl","id":"NjQyMTgzOTU5MjA4MTA3Omh0dHBzXGEvL3d3dy5pbnN0YWdyYW0uY29tL2ludml0ZXMvY29udGFjdC8\/aT0xMnQ2YXUzMGk0YTg4JnV0bVxiY29udGVudD0xdGlyZXpuOjo6Og=="},"entity_is_weak_reference":false,"length":78,"offset":419},{"__typename":"EntityAtRange","entity":{"__typename":"ExternalUrl","id":"NjQyMTgzOTU5MjA4MTA3Omh0dHBzXGEvLzlqYWRhaWx5ZmVlZHMuY29tLm5nLzo6Ojo="},"entity_is_weak_reference":false,"length":28,"offset":666}]},"is_markdown_enabled":false,"can_comment":{"can_viewer_comment":false,"id":"ZmVlZGJhY2s6NDU4NTY3ODcxNjk0NjU5XzQ1OTAwMzcyNDk4NDQwNw=="},"inline_survey_config":null,"reply_parent_comment":null,"flat_threading_depth":0,"__typename":"Comment"},"cursor":"AQHRg-60lkwQU9zFI1CXN8Zkqs_UCFt2y34WFJUI2Soz1uq5ASmufYjdt4hmWJAw_1I0oSZqgH2-YP5LCw_nwJd-Rg"}],"is_initially_expanded":true,"page_size":50,"reply_comment_order":"TOPLEVEL","should_render_composer_preemptively":true,"comment_order":"TOPLEVEL","page_info":{"end_cursor":"AQHRkSRceLxynnyVtqOULq69ly-hma7e0kIHzE3vtVYaiOW-NPnGDigU190NUeIAh91OneWp5fSnTUvcbwMSHVniwQ","has_next_page":true,"has_previous_page":false,"start_cursor":"AQHRySmaqNdYtlKVkq0j8Hue270mmtyypoyiuwoyMyNBxwGNv1ZTkF8YEOTPbBcYhTiN6t5sytDX-k2P5fhjhR2L-Q"}},"can_viewer_react":false,"supported_reactions":[{"key":1},{"key":2},{"key":4},{"key":3},{"key":7},{"key":8}],"feedback_typers":{"other_count":0},"default_comment_ordering":"toplevel","localized_comment_orderings":[{"description":"Affiche tous les commentaires, les plus anciens apparaissant en premier.","title":"Les plus anciens","value":"TOPLEVEL"},{"description":"Affiche les commentaires d\u2019amis et ceux ayant entra\u00een\u00e9 le plus de r\u00e9actions en premier.","title":"Les plus pertinents","value":"RANKED_THREADED"}]}},"extensions":{"is_final":true}},"sequence_number":0,"variables":{"afterTime":0,"displayCommentsFeedbackContext":"{\"bump_reason\":0,\"comment_expand_mode\":2,\"comment_permalink_args\":{\"comment_id\":null,\"reply_comment_id\":null,\"filter_non_supporters\":null},\"interesting_comment_fbids\":[],\"is_location_from_search\":false,\"last_seen_time\":null,\"log_ranked_comment_impressions\":false,\"probability_to_comment\":0,\"story_location\":9,\"story_type\":0}","displayCommentsContextEnableComment":false,"displayCommentsContextIsAdPreview":false,"displayCommentsContextIsAggregatedShare":false,"displayCommentsContextIsStorySet":false,"feedLocation":"PAGE_TIMELINE","feedbackSource":22,"feedbackTargetID":"ZmVlZGJhY2s6NDU4NTY3ODcxNjk0NjU5","focusCommentID":null,"canShowSeenState":false,"commentProfilePictureSizeDepth0":32,"commentProfilePictureSizeDepth1":20,"containerIsFeedStory":true,"containerIsWorkplace":false,"containerIsLiveStory":false,"containerIsTahoe":false,"groupID":"","scale":1,"shareableStoryContext":{"ad_id":null,"feed_location":"PAGE_TIMELINE","feedback_referrer":null,"feedback_source":22,"outer_story_actor_id":300653326696613,"story_caret_menu_button_id":null,"story_container_id":null,"user_logged_out_in_group_feed":false},"storyID":"S:_I300653326696613:2659898387438750","storyLocation":9,"useDefaultActor":true,"isComet":false,"UFI2CommentsProvider_commentsKey":null},"incremental_chunks":[]}}],2]],"define":[["cr:838016",["React-prod"],{"__rc":["React-prod","Aa15vLWOOI39my5Ps8RPvqohTJbogmI4n5fqW6d_P958jwjxC3AWC1VABAwC91DOY0yDeMdKicJ-oQ"]},-1],["cr:888908",["warningBlue"],{"__rc":["warningBlue","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:891836",["ReactDOMProdOrProfiling-fb"],{"__rc":["ReactDOMProdOrProfiling-fb","Aa15vLWOOI39my5Ps8RPvqohTJbogmI4n5fqW6d_P958jwjxC3AWC1VABAwC91DOY0yDeMdKicJ-oQ"]},-1],["cr:917439",["PageTransitionsBlue"],{"__rc":["PageTransitionsBlue","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1105154",[],{"__rc":[null,"Aa15vLWOOI39my5Ps8RPvqohTJbogmI4n5fqW6d_P958jwjxC3AWC1VABAwC91DOY0yDeMdKicJ-oQ"]},-1],["cr:1108857",[],{"__rc":[null,"Aa15vLWOOI39my5Ps8RPvqohTJbogmI4n5fqW6d_P958jwjxC3AWC1VABAwC91DOY0yDeMdKicJ-oQ"]},-1],["cr:1183579",["InlineFbtResultImpl"],{"__rc":["InlineFbtResultImpl","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:840411",[],{"__rc":[null,"Aa15vLWOOI39my5Ps8RPvqohTJbogmI4n5fqW6d_P958jwjxC3AWC1VABAwC91DOY0yDeMdKicJ-oQ"]},-1],["cr:845147",[],{"__rc":[null,"Aa0k_aoCZQx19oOfX2YgUrtEMM7EuOBt6JA3415FYDaktO4FZ2JbWEmQo-KYtSB9gFjE9M0pr2291SFFiiwqiPndQgo"]},-1],["cr:939148",[],{"__rc":[null,"Aa2AW_P_tdiaA_88d23Xp1qXiPXpdHqGosvvIxQCI1tFlIXZ8Voq2yUz_RzoEQ3N2wSSrux-53BKggXbWmFa"]},-1],["cr:971473",["LayerHideOnTransition"],{"__rc":["LayerHideOnTransition","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:686615",["RelayFBDefaultEnvironment"],{"__rc":["RelayFBDefaultEnvironment","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:869617",[],{"__rc":[null,"Aa0GqfYvD6sDG4H9CO2zmghi8FCEQYUQUZpX3RD0JV3vg72lZiP8tQTbWw_w36FS-RgeW2BUflPT52n5pqbp"]},-1],["cr:1110430",[],{"__rc":[null,"Aa15vLWOOI39my5Ps8RPvqohTJbogmI4n5fqW6d_P958jwjxC3AWC1VABAwC91DOY0yDeMdKicJ-oQ"]},-1],["cr:1180180",["EnvironmentTimezoneDecisionTree-tz2019c"],{"__rc":["EnvironmentTimezoneDecisionTree-tz2019c","Aa3U1LRSn-iITBQJi6ppSsAD281EVS45BbRtR24Y4pyKxbI_8KkmwqikWpiM5vyt19YCv8sWygfJcaL271b4ccuPGvtE"]},-1],["cr:1180181",["TimezoneNamesData-tz2019c"],{"__rc":["TimezoneNamesData-tz2019c","Aa3U1LRSn-iITBQJi6ppSsAD281EVS45BbRtR24Y4pyKxbI_8KkmwqikWpiM5vyt19YCv8sWygfJcaL271b4ccuPGvtE"]},-1],["cr:1180184",["TimezoneRulesFrom2009-tz2019c"],{"__rc":["TimezoneRulesFrom2009-tz2019c","Aa3U1LRSn-iITBQJi6ppSsAD281EVS45BbRtR24Y4pyKxbI_8KkmwqikWpiM5vyt19YCv8sWygfJcaL271b4ccuPGvtE"]},-1],["cr:1190951",[],{"__rc":[null,"Aa15vLWOOI39my5Ps8RPvqohTJbogmI4n5fqW6d_P958jwjxC3AWC1VABAwC91DOY0yDeMdKicJ-oQ"]},-1],["cr:682175",[],{"__rc":[null,"Aa0g8wofKmXkt0Lj9cDploBK3Af8j1oGh1YIPg1HAlMkDni7CE5ocTY-OrlL1kzxdJm9LQ"]},-1],["cr:683059",[],{"__rc":[null,"Aa33S88yvSXZkJR39ckoZqVqiyqYibJQ1SDfC7xxFLN7xUIByeT89PrMhX_-qgD8gIrDiqKtnKjgIocQEk98-GBRlkjnAgrz5RIRszlF"]},-1],["cr:687059",["SchedulerTracing-prod"],{"__rc":["SchedulerTracing-prod","Aa0VXpbTUiIm60K5M41ZF0mhT_-p-DcBlrmT3ONj-_DhUxSEUwG86B3l99bSW_IgX7LVDyorcYc0sVL2WkIGRn2WrkxWEQ"]},-1],["cr:724654",["clearTimeout"],{"__rc":["clearTimeout","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:724655",["setTimeoutAcrossTransitions"],{"__rc":["setTimeoutAcrossTransitions","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:728805",["storiesOpenComposer"],{"__rc":["storiesOpenComposer","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:779698",["RelayModern"],{"__rc":["RelayModern","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:793537",["storiesOpenMessageViewerDialog"],{"__rc":["storiesOpenMessageViewerDialog","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:809608",["storiesJewelArbiterListener"],{"__rc":["storiesJewelArbiterListener","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:809609",["storiesComposerArbiterListener"],{"__rc":["storiesComposerArbiterListener","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:860400",["CometDialogContextBlue"],{"__rc":["CometDialogContextBlue","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:862811",[],{"__rc":[null,"Aa33S88yvSXZkJR39ckoZqVqiyqYibJQ1SDfC7xxFLN7xUIByeT89PrMhX_-qgD8gIrDiqKtnKjgIocQEk98-GBRlkjnAgrz5RIRszlF"]},-1],["cr:869845",["FBStoriesViewer2"],{"__rc":["FBStoriesViewer2","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:894130",[],{"__rc":[null,"Aa1whPEBXK6ac1-cSDP8ub-WNJ4lDl5kvwnwE4MyQ0aPEkPHRVeMMZD0QRGdYJANamGlDgazJ-nbd9FsJ7lnCg"]},-1],["cr:899180",["StoriesViewer2URI"],{"__rc":["StoriesViewer2URI","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:942783",[],{"__rc":[null,"Aa0g8wofKmXkt0Lj9cDploBK3Af8j1oGh1YIPg1HAlMkDni7CE5ocTY-OrlL1kzxdJm9LQ"]},-1],["cr:956931",["useCometPrerendererImpl"],{"__rc":["useCometPrerendererImpl","Aa2OuQTcJozfpue8DwT3TEj7yKcPnlRBqnKo7UuPh5GEYQiiwnfbfZ_cd4RC92WS90z1_0Iro-afgFN6O1JsPAuiSjzoQUM"]},-1],["cr:956987",["StoriesTimespentPixel.react"],{"__rc":["StoriesTimespentPixel.react","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:987224",["storiesBlueCreateFragmentContainer"],{"__rc":["storiesBlueCreateFragmentContainer","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:994756",["BaseBlueModal.react"],{"__rc":["BaseBlueModal.react","Aa31JJiZ3-CtxwStR3RC4PNeUr0pYw4aAXv66khQiajY_E07V7paFIu8nQ3K-hn55KnkE_kYViHh3E4"]},-1],["cr:1011783",["CometHeroInteractionImpl.react"],{"__rc":["CometHeroInteractionImpl.react","Aa0itvlibb_-0hnoLXzkyeAwsaUODQsU6J7hWrOTjdtXLbsjGOq178y0wHqUw8azbJkiyVeV_iw"]},-1],["cr:1013932",["StoriesRelayBlue"],{"__rc":["StoriesRelayBlue","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1014646",[],{"__rc":[null,"Aa3EV42Ysob7tJ0THA-zwPPWqRmM9C2tSDQD4prsLrqGBk6AGkSSC4h24l9ijN7qmHmyvlDzMo6yYvOpQLtWvvAS"]},-1],["cr:1018061",[],{"__rc":[null,"Aa1PTJCehBFTicE7rheKeXvlENpHNMjnb5oOpTybNu5vqAjfiAlTpo2JUZB04hRo2Xm9DPuivw"]},-1],["cr:1032347",["StoriesBugNub.react"],{"__rc":["StoriesBugNub.react","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1064332",[],{"__rc":[null,"Aa2e7H2IVJRoZEm5QfEMkw11msx4V7458fAhaLwYE7-ZMSjAEN84Bncj3j6FUJPzwgSmhDqYTqo"]},-1],["cr:1072137",["StoriesCardBlueVideoComponent.react"],{"__rc":["StoriesCardBlueVideoComponent.react","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1073243",["useStoriesBluePageTransitionListener"],{"__rc":["useStoriesBluePageTransitionListener","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1075037",["useStoriesCardNoopLogging"],{"__rc":["useStoriesCardNoopLogging","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1075529",["CometInteractionVC"],{"__rc":["CometInteractionVC","Aa3jBTDYT-BP65Izmf_uzxMrzTR3JyE2tfK8Ey3CqHnWEH02Mj0ETAm0YfMA1VKrGOfIdfHttMo89sqxQcU8IoclKj2S7u_KJEQ1TH0H9A"]},-1],["cr:1080422",[],{"__rc":[null,"Aa3WWt48Eo4T8Lq_Z-b3jQTA-AIs7P1C1u7BOvUrzXjJpsGSX3kmJT5r0GY8R0Wi-8Ya-pvoRvz1a-IveISjZidbyk9eNeeRZk7n"]},-1],["cr:1088443",[],{"__rc":[null,"Aa1ma3ExIFqrYipwiVa6Q57L1ZBvKDB3bMSR9COwmUHc3xLXvVcLFGDiAMoNTr8hhNBP5SAvxFLP8YlYfg"]},-1],["cr:1106379",[],{"__rc":[null,"Aa04AR7IlTpCsyynD1PCf9UICzRMf_jNzUalRJVvb-dDioiBnyUim5NAm6XtMqM7VB-4alkoZbz-KHZFHRObNzRb"]},-1],["cr:1106516",[],{"__rc":[null,"Aa2km8geQHKWt0evSmO3lopburfzYGFbn9D1-XtxW_7fB9kmALjkeKoWwkrGLPICYYWf8j2mUWB7"]},-1],["cr:1121434",[],{"__rc":[null,"Aa15vLWOOI39my5Ps8RPvqohTJbogmI4n5fqW6d_P958jwjxC3AWC1VABAwC91DOY0yDeMdKicJ-oQ"]},-1],["cr:1150430",["RelayFBEnvironment"],{"__rc":["RelayFBEnvironment","Aa3BriPyoJ91vRxEljmNDIZGymhEVN-BR6ueZ5wyJSYJiPl_teeGz7PLNKtq1FEy2YmZPvJ1IAjlSV6OhpBG0gDFlGNFgTiqmcbf-8qJ3aQ"]},-1],["cr:1195003",["CometInteractionTracingMetricsBlue"],{"__rc":["CometInteractionTracingMetricsBlue","Aa2myl6iWyVswxVzwKvInCvnKBIWwDAY44wBcmLkKGNr9NCzKoYrlCBsLdh6ObVNIicoM_h5c5Q5gv78rTUurAF-0vXWnwZYw0LuLPQ"]},-1],["cr:1209197",["RunBlue"],{"__rc":["RunBlue","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1209198",[],{"__rc":[null,"Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1231509",["FBStoriesActionsFromComet"],{"__rc":["FBStoriesActionsFromComet","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1236183",[],{"__rc":[null,"Aa1rAEYhOSZZ8JJTxHxXKeOtOXk2r-CWE1XitwDH98wzDIY4Z87fvx8hgTRhcvtsH_W30O7m3tSFW0bEq4DKsZACAtzsTCXcNuuYVw"]},-1],["cr:1069930",[],{"__rc":[null,"Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1083116",["XAsyncRequest"],{"__rc":["XAsyncRequest","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1083117",[],{"__rc":[null,"Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1109759",["CookieConsentBlacklist"],{"__rc":["CookieConsentBlacklist","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:902965",["SketchBlue"],{"__rc":["SketchBlue","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:694370",["requestIdleCallbackBlue"],{"__rc":["requestIdleCallbackBlue","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:909281",["EventListener"],{"__rc":["EventListener","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:909282",["ArbiterMixin"],{"__rc":["ArbiterMixin","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:909496",["ErrorDialog"],{"__rc":["ErrorDialog","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:909497",["Link.react"],{"__rc":["Link.react","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:936794",[],{"__rc":[null,"Aa350v6Ll_XA2twEUuCe96qLgGUNy-1UUUe1D3a7BtORRxvIQdWl-ABUk8S0sjPPlTjLimGTl31P5Q"]},-1],["cr:951783",["destroyOnUnload"],{"__rc":["destroyOnUnload","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:967670",[],{"__rc":[null,"Aa0BcxtKhl26CPVHw5ONOGbxc1ZlwJN3lXn6AZK81Yfj6iae-6p7hDMPYVRG6dMwcg2hfR5cuijfmZJkITbBaT-hs8QBEWIWDjw"]},-1],["cr:1061104",[],{"__rc":[null,"Aa32-wlT-iEPSIlCTR0JDFAsKHcBWro7NMew8RvsbFQklSXdMwE8rt8zZBtITqSAL28bJS6O5SUMPK7hnICD1H1OGKmnK79Ge51IaNnQag"]},-1],["cr:1137960",["VideoChannelViewVariablesDynamic"],{"__rc":["VideoChannelViewVariablesDynamic","Aa0U64G2Nf5878_xZN6L1nqzHMkVkB4P92z5N939G4ANYDs6w4M4UDxpEjTHJVSH3nXLIpgOk5YJAV-ts9yPRTIvIbj3jjYGzNTvSgacoA790u0"]},-1],["cr:1167612",["PresenceState"],{"__rc":["PresenceState","Aa1Z6YZ8XLYwib-sy0k2mfyN-KUwwoxJHiAGPLWYbaQYbIvmzKaADU2MUtlFls8mapWTH9r7uF8PQKWRJ3cILQacd48"]},-1],["cr:1170620",["VideoActionsControl.react"],{"__rc":["VideoActionsControl.react","Aa2orGsqnwYzcqy6CQ9QyBwDTMf9zNkZp1WfYl5bdZuWEqDhZAil4yYhZro9lpPr8PXjiJETDmhZM0oeEiQZu0XWf1a-OOwycULonnynBQ"]},-1],["cr:943110",[],{"__rc":[null,"Aa1bk-P2pNtUOgyP_Dx6xU2yX_z_e4YRYNk4gX-IuVjEyYZ3aYBxlftO9tbKi6OckvAWvATcnoWkVablFuvUxNbq1QiIKPuE3t8-i0rBLHYwHF8"]},-1],["cr:1088657",[],{"__rc":[null,"Aa0EyibJt9_KYfDvCkX2Pas1N1akxUkrMPrU9vvsash4rN1wt62zaTmw6VXuadSEkRzmkkbZ1Kzsaco94V8"]},-1],["cr:1095627",[],{"__rc":[null,"Aa3YEuSkr1t-H5th81GCO3X7uKtkX45YwGXjnbt6xmuQz4n1rvTTPj9wpAUn1rfjk3HUV68u-jV5V-d5a_Vgal2z_rm-hjnp-ki2L7bYQb_6"]},-1],["cr:1095628",[],{"__rc":[null,"Aa0egabMl0ScdFhXv4eZI5Sc1FWoVWxbmGCayP_Cb3UWptLV692YeVuwsV9yF-EdUA"]},-1],["cr:827572",["Link.react"],{"__rc":["Link.react","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:828359",["UFI2BluePrimerDialog.react"],{"__rc":["UFI2BluePrimerDialog.react","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:829648",["AbstractButton.react"],{"__rc":["AbstractButton.react","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:840776",[],{"__rc":[null,"Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:850872",["Tooltip.react"],{"__rc":["Tooltip.react","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:851885",["UFI2RepliesExpanderTimestampLabel.react"],{"__rc":["UFI2RepliesExpanderTimestampLabel.react","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:858332",["UFI2SurfaceContainerFallback"],{"__rc":["UFI2SurfaceContainerFallback","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:859010",["UFI2CommentVideoAttachmentPlayerLazy.react"],{"__rc":["UFI2CommentVideoAttachmentPlayerLazy.react","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:866447",[],{"__rc":[null,"Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:880930",["getUFI2CommentHighlightClasses"],{"__rc":["getUFI2CommentHighlightClasses","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:886520",["useTrackingCodeFnForBlue"],{"__rc":["useTrackingCodeFnForBlue","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:897925",[],{"__rc":[null,"Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:898975",["Run"],{"__rc":["Run","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:898976",[],{"__rc":[null,"Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:936168",["RelayModern"],{"__rc":["RelayModern","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:982210",["UFI2CommentMenuBlue.react"],{"__rc":["UFI2CommentMenuBlue.react","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1009153",["UFI2CommentTopReactions.react"],{"__rc":["UFI2CommentTopReactions.react","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1088250",[],{"__rc":[null,"Aa1R9qlf06Tex7NeQgKI61t1FJC0vBPdefDaLdcUcb0asjf3TOZwEy-UcWh2Tu3ogZTHnHETHox0-t1iPv_qEJwjCql4QXuaIvOEpc4"]},-1],["cr:1157165",[],{"__rc":[null,"Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1194901",[],{"__rc":[null,"Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1232139",[],{"__rc":[null,"Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1232140",["XUISpinner.react"],{"__rc":["XUISpinner.react","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:682211",[],{"__rc":[null,"Aa2sA8Vq2vzxahVgh6utVxKHubgiLc_NUe_xfQlVg9D-s_CemCt9mYHN3dIrqb2yzNTTxM3sOkEylcOGx-u8TErCnhUadjhKIFDPb0oqpVdMOyI"]},-1],["cr:719006",[],{"__rc":[null,null]},-1],["cr:1156646",["GamesVideoDeleteCommentDialogDeferred.react"],{"__rc":["GamesVideoDeleteCommentDialogDeferred.react","Aa3M54nLc_Oi9zaEoLLvMYFltooI6zyUFdV636lfLRZTWjbOsOALRf6-_3Y-Da9tSZ5Sp_dzx55uJg4-24NAXKljCD7anHxlBLn0TL0p55Bj4BunI6LP"]},-1],["cr:1156647",["GamesVideoModerationRulesNuxDeferred.react"],{"__rc":["GamesVideoModerationRulesNuxDeferred.react","Aa1ArCvrK29z_yAUIinkfs5tJeei2hML0qqFDl5LuVWn54uNr7YZdP7Nz-WrNuLiZlwvIxp8QUdzfBf-8p-0G88sMcg1tAEMD2bL"]},-1],["cr:1157215",["GamesVideoCommentTombstone.react"],{"__rc":["GamesVideoCommentTombstone.react","Aa2-dFFeLfDIcIp9yHf-MPS4VRF0DN3PAy6dcXmjU0cllmPdbLh1DxiUQPqW_YbRNGSdnSTtv7PWfSA7T8dEYFzIgBksDfvAZUrC_LH5ndo"]},-1],["cr:1167833",["WritingAssistanceTypedLogger"],{"__rc":["WritingAssistanceTypedLogger","Aa0y94Sf2Lgr8AzhQGZ4EKjskYe3K5eOyhyZ1-shfbscesQRLarEFGJ1D2P9tti0Gik1c7c"]},-1],["cr:1171644",["GamesVideoCommentRemovedDialogDeferred.react"],{"__rc":["GamesVideoCommentRemovedDialogDeferred.react","Aa3IRdXjpPbSSiHAzZ-T-nzhcFAPZ3YM7-LrFIO4XW7afIBdoV0mQuiAfwQ-UEQ9V0BdLFTpmXfMUPvn_rL4szIM_DWzbqvbzNcQE328F9D0JgaHozsA0Q"]},-1],["cr:844180",["TimeSpentImmediateActiveSecondsLoggerBlue"],{"__rc":["TimeSpentImmediateActiveSecondsLoggerBlue","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1187159",["BlueCompatBroker"],{"__rc":["BlueCompatBroker","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:983844",[],{"__rc":[null,"Aa15vLWOOI39my5Ps8RPvqohTJbogmI4n5fqW6d_P958jwjxC3AWC1VABAwC91DOY0yDeMdKicJ-oQ"]},-1],["cr:682514",["ReactDOM-prod"],{"__rc":["ReactDOM-prod","Aa0VXpbTUiIm60K5M41ZF0mhT_-p-DcBlrmT3ONj-_DhUxSEUwG86B3l99bSW_IgX7LVDyorcYc0sVL2WkIGRn2WrkxWEQ"]},-1],["cr:764837",["Arbiter"],{"__rc":["Arbiter","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:808374",["PageTransitions"],{"__rc":["PageTransitions","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1150432",["RelayModern"],{"__rc":["RelayModern","Aa3BriPyoJ91vRxEljmNDIZGymhEVN-BR6ueZ5wyJSYJiPl_teeGz7PLNKtq1FEy2YmZPvJ1IAjlSV6OhpBG0gDFlGNFgTiqmcbf-8qJ3aQ"]},-1],["cr:1236146",["HeroInteractionTracing"],{"__rc":["HeroInteractionTracing","Aa2myl6iWyVswxVzwKvInCvnKBIWwDAY44wBcmLkKGNr9NCzKoYrlCBsLdh6ObVNIicoM_h5c5Q5gv78rTUurAF-0vXWnwZYw0LuLPQ"]},-1],["cr:1236147",[],{"__rc":[null,"Aa2myl6iWyVswxVzwKvInCvnKBIWwDAY44wBcmLkKGNr9NCzKoYrlCBsLdh6ObVNIicoM_h5c5Q5gv78rTUurAF-0vXWnwZYw0LuLPQ"]},-1],["cr:1150431",["RelayModern"],{"__rc":["RelayModern","Aa3BriPyoJ91vRxEljmNDIZGymhEVN-BR6ueZ5wyJSYJiPl_teeGz7PLNKtq1FEy2YmZPvJ1IAjlSV6OhpBG0gDFlGNFgTiqmcbf-8qJ3aQ"]},-1],["cr:1083606",["useStoriesReportBlueBug"],{"__rc":["useStoriesReportBlueBug","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1072138",["StoriesCardBlueVideoMedia.react"],{"__rc":["StoriesCardBlueVideoMedia.react","Aa23vYPSKS8axuiPQNbTDUf6HtvKg_WT6wgeNjru3Cv58B2Ys1CTh8xrPNC_Bai-QBsQtehI3uDcR9id_dd4bHkPAXXVNGeQtb58"]},-1],["cr:989159",["ScriptPath"],{"__rc":["ScriptPath","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:885544",["AsyncRequest"],{"__rc":["AsyncRequest","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:885545",["FRXURI"],{"__rc":["FRXURI","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:962207",["AsyncDialog"],{"__rc":["AsyncDialog","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1187815",["StoriesDefaultBucketListWrapperBlue.react"],{"__rc":["StoriesDefaultBucketListWrapperBlue.react","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1184420",["StoriesArchiveCardStoreForBlue"],{"__rc":["StoriesArchiveCardStoreForBlue","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:1189243",["StoriesArchiveReshareButton.react"],{"__rc":["StoriesArchiveReshareButton.react","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:682215",["UFIReactionsMenuWithAnimatedIcons.react"],{"__rc":["UFIReactionsMenuWithAnimatedIcons.react","Aa3fzpniG2C6tzbbJlNd-JWGAUG5_4e5oSV6IYv9BRuodNilS0c3Y93g7WdA57sBR7H6oKM9_OKo-r6Gew-0bU9qBZq-h9ee7JJ5B70"]},-1],["cr:895839",["ReactFiberErrorDialogImpl"],{"__rc":["ReactFiberErrorDialogImpl","Aa07fAR3KhwGsKKFNMSBvOXy-RW28H7RhcKEJyiSWlc_JsJKB_zle_wvWciXYyIs3DUzHqIEaYvqqltYxhhSnQs"]},-1],["cr:955714",[],{"__rc":[null,"Aa1Pztv4qkIlq-Ufi2YJLm_vLl7w4-JVx29_Lld0f8TKMvHedw6botBgkt1ukP69mq6k9GKAqRXE_7mZ"]},-1],["cr:1094133",[],{"__rc":[null,"Aa0bP3CgEoNywWSLIqH145rsHnbZjyK3Rwi77X7o5xbUK-UdX9SYsPs4of3fpE3Er3aQ7Fv1bqalHFyjWTt1YUg"]},-1],["cr:1221437",["InteractionTracingLoomProviderBlue"],{"__rc":["InteractionTracingLoomProviderBlue","Aa0lFWPODydMqHFhbAt_nXKQw3fMKzACrx9hFPQ1yIRj8hbD0x4xmwZlrR5NnaS02-rfy3NQ5wcDtn9WFThJ"]},-1],["cr:1221438",["VisualCompletionLoomProviderBlue"],{"__rc":["VisualCompletionLoomProviderBlue","Aa0lFWPODydMqHFhbAt_nXKQw3fMKzACrx9hFPQ1yIRj8hbD0x4xmwZlrR5NnaS02-rfy3NQ5wcDtn9WFThJ"]},-1],["cr:1229882",[],{"__rc":[null,"Aa2-aMhBc5onff_UGWk3uEv3N_BAAs3jnSqD1itMa9223DZAN2RRcUyDfs6WhpYpUT2G8eQlLWEhuQZBjTH1_lDRxw"]},-1],["cr:1175081",["StoriesCometLeftRailRoot.react"],{"__rc":["StoriesCometLeftRailRoot.react",null]},-1],["cr:895840",[],{"__rc":[null,"Aa3lt-SZetD2tLu49rBsA9T22zc0JpplFjVWq9MXQiV-2SN3bvGfrJERwRi6kzcnqtww4Fq4f2L_ra3ADEaaF7Vb-7g"]},-1],["AsyncRequestConfig",[],{"retryOnNetworkError":"1","useFetchStreamAjaxPipeTransport":false},328],["EntityPageConfig",[],{"hasMutationObserver":true},2041],["FbtLogger",[],{"logger":null},288],["FbtResultGK",[],{"shouldReturnFbtResult":true,"inlineMode":"NO_INLINE"},876],["IntlPhonologicalRules",[],{"meta":{},"patterns":{}},1496],["IntlViewerContext",[],{"GENDER":3},772],["NumberFormatConfig",[],{"decimalSeparator":",","numberDelimiter":"\u00a0","minDigitsForThousandsSeparator":4,"standardDecimalPatternInfo":{"primaryGroupSize":3,"secondaryGroupSize":3},"numberingSystemData":null},54],["SessionNameConfig",[],{"seed":"2US8"},757],["ZeroCategoryHeader",[],{},1127],["PageletGK",[],{"destroyDomAfterEventHandler":false,"skipClearingChildrenOnUnmount":true},2327],["KSConfig",[],{"killed":{"__set":["POCKET_MONSTERS_CREATE","POCKET_MONSTERS_DELETE","VIDEO_DIMENSIONS_FROM_PLAYER_IN_UPLOAD_DIALOG","POCKET_MONSTERS_UPDATE_NAME","ADS_PLACEMENT_FIX_PUBLISHER_PLATFORMS_MUTATION","MOBILITY_KILL_OLD_VISIBILITY_POSITION_SETTING","WORKPLACE_DISPLAY_TEXT_EVIDENCE_REPORTING","DYNAMIC_ADS_SET_CATALOG_AND_PRODUCT_SET_TOGETHER","BUSINESS_GRAPH_SETTING_APP_ASSIGNED_USERS_NEW_API","BUSINESS_GRAPH_SETTING_WABA_ASSIGNED_USERS_NEW_API","BUSINESS_GRAPH_SETTING_ESG_ASSIGNED_USERS_NEW_API","BUSINESS_GRAPH_SETTING_PRODUCT_CATALOG_ASSIGNED_USERS_NEW_API","BUSINESS_MANAGER_SHOW_UI_HIDDEN_TASK_FOR_ASSET","BUSINESS_GRAPH_SETTING_BU_ASSIGNED_USERS_NEW_API","BUSINESS_GRAPH_SETTING_SESG_ASSIGNED_USERS_NEW_API","RECRUITING_REQUISITION_VALIDATE_COMPANY_GROUPING_ON_LINK","COMET_SAFARI_MEGA_LAYOUT_FIX_FOR_VIDEO_ATTACHMENTS"]},"ko":{"__set":["acrJTh9WGdp","1oOE64fL4wO","2dhqRnqXGLQ","7r6mSP7ofr2","1ntjZ2zgf03","3oh5Mw86USj","8NAceEy9JZo","5mNEXob0nTj","4j36SVzvP3w","8PlKuowafe8","53gCxKq281G","3yzzwBY7Npj","4NbCsulUUI3","4NSq3ZC4ScE","1onzIv0jH6H","5LSlJUj3BnT","advqeReHsha"]}},2580],["IntlHoldoutGK",[],{"inIntlHoldout":false},2827],["IntlNumberTypeConfig",[],{"impl":"if ((n === 0 || n === 1)) { return IntlVariations.NUMBER_ONE; } else { return IntlVariations.NUMBER_OTHER; }"},3405],["LinkshimHandlerConfig",[],{"supports_meta_referrer":false,"default_meta_referrer_policy":"default","switched_meta_referrer_policy":"origin","non_linkshim_lnfb_mode":"ie","link_react_default_hash":"AT1ZZjuzU_lLUnFFGvDpuu9UzpdEkGYN4I8eljun8BCSuZlhd1ZU4xwyYROj3S2fID3JbsdVPi-itn5KSy6NxR4FcMZX9oRjVwW4xC6XbI8Ne0nwzcH93dSdBXv_j_kUWhm6OEuAIToynpsa","untrusted_link_default_hash":"AT3lcvDWQ8pEjl5x36wRxejyMPjofH1x3clGC_e9WtmVjfNG5GFaadbpHmuJxsXwri-uHO29nAzymTB6__IPYonMuwKiUD62nisR5OgheBm3b-xFtoKHWeq9m4K0EmKGA0jS_plK3PJzSyB2","linkshim_host":"l.facebook.com","use_rel_no_opener":false,"always_use_https":false,"onion_always_shim":true,"middle_click_requires_event":false,"www_safe_js_mode":"hover","m_safe_js_mode":null,"ghl_param_link_shim":false,"click_ids":[],"is_linkshim_supported":true,"current_domain":"facebook.com"},27],["MessengerURIConstants",[],{"ARCHIVED_PATH":"\/archived","COMPOSE_SUBPATH":"\/new","FOLDERS_PATH":"\/folders","GALLERY_PATH":"\/gallery","GROUPS_PATH":"\/groups","PAYMENT_PATH":"\/p","PAYMENT_PAY_PATH":"\/pay","PEOPLE_PATH":"\/people","SEARCH_PATH":"\/search","SUPPORT_PATH":"\/support","FILTERED_REQUESTS_PATH":"\/filtered","MESSAGE_REQUESTS_PATH":"\/requests","THREAD_PREFIX":"\/t\/","GROUP_PREFIX":"group-","FACEBOOK_PREFIX":"\/messages"},1912],["PageContentTabSuccessDialogTimer",[],{"TIME_IN_MS":800},1573],["WWWBase",[],{"uri":"https:\/\/www.facebook.com\/"},318],["LoadingMarkerGated",[],{"component":null},2874],["WorkGalahadSettings",[],{"isGalahadEnabled":false,"chatBeeperDisabled":false},3623],["FBDomainsSVConfig",[],{"domains":{"__map":[["www.facebook.com",1],["tfbnw.net",1],["m.beta.facebook.com",1],["touch.beta.facebook.com",1],["www.dev.facebook.com",1],["fb.me",1],["s.fb.com",1],["m.fbjs.facebook.com",1],["facebook.com.es",1],["www.fbjs.facebook.com",1],["m.facebook.com",1],["facebook.fr",1],["fbsbx.com",1],["attachment.fbsbx.com",1],["lookaside.fbsbx.com",1],["web.facebook.com",1],["fb.com",1],["messenger.com",1]]}},3828],["ClickIDDomainBlacklistSVConfig",[],{"domains":["craigslist","tfbnw.net","flashtalking.com","canadiantire.ca","o2.co.uk","archive.org","reddit.com","redd.it","gmail.com","cvk.gov.ua","electoralsearch.in","yahoo.com","cve.mitre.org","usenix.org","ky.gov"]},3829],["PresenceConfigInitialData",[],{"active_cutoff":120,"presence_page_green_dot_sub":false,"presence_throw_for_malformed_id":false,"viewer_presence_capabilities":null},3841],["FalcoJSLoggerSamplingPolicies",[],{"rates":{"accountquality_aqviewpanetab_augl":1,"accountquality_aqviewpanetabended_augl":1,"accountquality_coreappexperience_augl":1,"accountquality_coreappexperienceended_augl":1,"accountquality_coreinteractionbutton_augl":1,"accountquality_coreinteractioncheckbox_augl":1,"accountquality_coreinteractioncollapse_augl":1,"accountquality_coreinteractionexpand_augl":1,"accountquality_coreinteractionmouseover_augl":1,"accountquality_coreinteractionmouseoverended_augl":1,"accountquality_coreinteractionpanetab_augl":1,"accountquality_coreuserinteraction_augl":1,"accountquality_coreuserinteractionended_augl":1,"admin_saw_hcp_ed_interstitial":1,"adsadbuilder_amadbuildermockupreadystatuschanged_augl":1,"adsadbuilder_amadbuildernavigatedtoanotherpage_augl":1,"adsadbuilder_amadbuilderoptinstarted_augl":1,"adsadbuilder_amadbuilderoptoutstarted_augl":1,"adsadbuilder_coreappexperience_augl":1,"adsadbuilder_coreuserinteraction_augl":1,"adscometflytrap_afcometselectadscategory_augl":1,"adscometflytrap_afcometselectproduct_augl":1,"adscometflytrap_coreappexperience_augl":1,"adscometflytrap_coreappexperienceended_augl":1,"adscometflytrap_coreinteractionbutton_augl":1,"adscometflytrap_coreinteractiontextinput_augl":1,"adscometflytrap_coreinteractiontextinputended_augl":1,"adscometflytrap_coreuserinteraction_augl":1,"adscometflytrap_coreuserinteractionended_augl":1,"adsflytrap_afsendfeedback_augl":1,"adsflytrap_coreappexperience_augl":1,"adsflytrap_coreappexperienceended_augl":1,"adsflytrap_coreinteractionbutton_augl":1,"adsflytrap_coreinteractiondropdown_augl":1,"adsflytrap_coreinteractiondropdownended_augl":1,"adsflytrap_coreinteractiontextinput_augl":1,"adsflytrap_coreinteractiontextinputended_augl":1,"adsflytrap_coreuserinteraction_augl":1,"adsflytrap_coreuserinteractionended_augl":1,"adsflytrap_coreviewmodal_augl":1,"adsflytrap_coreviewmodalended_augl":1,"adsmanager_amaccountoverview_augl":1,"adsmanager_amaccountoverviewended_augl":1,"adsmanager_amadbuilderimportflowmockupconfirmed_augl":1,"adsmanager_amadbuilderimportflowmockupselected_augl":1,"adsmanager_amadbuilderimportflowstarted_augl":1,"adsmanager_amadobjectcreateflow_augl":1,"adsmanager_amadobjectcreateflowended_augl":1,"adsmanager_amadobjectduplicateflow_augl":1,"adsmanager_amadobjectduplicateflowended_augl":1,"adsmanager_amadobjecteditflow_augl":1,"adsmanager_amadobjecteditflowended_augl":1,"adsmanager_amadobjectexportflow_augl":1,"adsmanager_amadobjectexportflowended_augl":1,"adsmanager_amadobjectimportflow_augl":1,"adsmanager_amadobjectimportflowended_augl":1,"adsmanager_amadobjectreviewandpublishflow_augl":1,"adsmanager_amadobjectreviewandpublishflowended_augl":1,"adsmanager_amadobjectsetbuyingtype_augl":1,"adsmanager_amadobjectsetobjective_augl":1,"adsmanager_amadscopyerror_augl":1,"adsmanager_amapierror_augl":1,"adsmanager_amautonamingclicktosave_augl":1,"adsmanager_ambackgrounderaserdialogclose_augl":1,"adsmanager_amconvergencecontextualmenuclick_augl":1,"adsmanager_amconvergenceexternalcreationdialogclick_augl":1,"adsmanager_amconvergencefocusmode_augl":1,"adsmanager_amconvergencefocusmodeended_augl":1,"adsmanager_amconvergencefocusmodetoggleclick_augl":1,"adsmanager_amconvergenceoptinoptout_augl":1,"adsmanager_amconvergencepublishflow_augl":1,"adsmanager_amconvergencepublishflowended_augl":1,"adsmanager_amconvergencepublishpreviewdialogselection_augl":1,"adsmanager_amcrash_augl":1,"adsmanager_amcreateflow_augl":1,"adsmanager_amcreateflowended_augl":1,"adsmanager_amcreateflowfocusframework_augl":1,"adsmanager_amcreateflowfocusframeworkclicktoedit_augl":1,"adsmanager_amcreateflowfocusframeworkended_augl":1,"adsmanager_amcreateflowmutableoption_augl":1,"adsmanager_amcreateflowpage_augl":1,"adsmanager_amcreateflowpageended_augl":1,"adsmanager_amcriticalexception_augl":1,"adsmanager_amdraftfragmentloaderror_augl":1,"adsmanager_amdraftloaderror_augl":1,"adsmanager_ameditflow_augl":1,"adsmanager_ameditflowended_augl":1,"adsmanager_amemojiclicktoedit_augl":1,"adsmanager_amemojiselectedemoji_augl":1,"adsmanager_amexception_augl":1,"adsmanager_amfatalerror_augl":1,"adsmanager_amhomeview_augl":1,"adsmanager_amhomeviewended_augl":1,"adsmanager_amimporterror_augl":1,"adsmanager_aminit_augl":1,"adsmanager_aminstantcheckoutdropdown_augl":1,"adsmanager_aminstantcheckoutsection_augl":1,"adsmanager_aminstantcheckoutsectionended_augl":1,"adsmanager_amnamingtypeaheadselect_augl":1,"adsmanager_ampublisherror_augl":1,"adsmanager_amsmartbackgrounddialog_augl":1,"adsmanager_amsmartbackgrounddialogclosed_augl":1,"adsmanager_amsmartbackgrounderror_augl":1,"adsmanager_amsmartbackgroundimagesave_augl":1,"adsmanager_amtableadobject_augl":1,"adsmanager_amtableadobjectended_augl":1,"adsmanager_amvalidationerror_augl":1,"adsmanager_coreappexperience_augl":1,"adsmanager_coreappexperienceended_augl":1,"adsmanager_coreinteractiontoggle_augl":1,"adsmanager_coreuserinteraction_augl":1,"adsmanager_coreuserinteractionended_augl":1,"adswaittimespinners_awtspinners_augl":1,"adswaittimespinners_coreappexperience_augl":1,"adswaittimespinners_coreappexperienceended_augl":1,"adswaittimespinners_coreuserinteraction_augl":1,"adswaittimespinners_coreuserinteractionended_augl":1,"al_dialog_shown":1,"altpay2_ui_event":1,"auglexplorer_augleupdatefilter_augl":1,"auglexplorer_coreappexperience_augl":1,"auglexplorer_coreappexperienceended_augl":1,"auglexplorer_coreuserinteraction_augl":1,"auglexplorer_coreuserinteractionended_augl":1,"billing1_workplace_event":1,"billing_interface_debug":1,"billing_interface_error":1,"billing_interface_event":1,"bizapp_tool_outcome":1,"blood_donation_partner_client_event":1,"business_inbox_bulk_admin_assignment_action_click":1,"business_inbox_bulk_admin_assignment_dialog_submit":1,"business_inbox_bulk_delete_action_click":1,"business_inbox_bulk_delete_dialog_submit":1,"business_inbox_bulk_label_action_click":1,"business_inbox_bulk_label_dialog_submit":1,"business_inbox_bulk_mark_as_unread_action_click":1,"business_inbox_bulk_move_to_folder_action_click":1,"business_inbox_bulk_reply_action_click":1,"business_inbox_bulk_reply_dialog_submit":1,"business_inbox_multi_admin_assignment_update":1,"business_inbox_nux_impression":1,"business_inbox_post_folder_update":1,"business_inbox_suggested_label_click":1,"business_inbox_suggested_label_impression":1,"business_inbox_suggested_label_render_view":1,"business_inbox_switch_folder_click":1,"business_inbox_thread_checkbox_click":1,"business_inbox_thread_checkbox_impression":1,"business_inbox_thread_checkbox_update_value":1,"business_inbox_thread_folder_update":1,"businessmanager_bmassetinfoextraaction_augl":1,"businessmanager_bmassetpermissionaccordianmenuinteraction_augl":1,"businessmanager_bmassetpermissiondelete_augl":1,"businessmanager_bmassetpermissiondeletecancel_augl":1,"businessmanager_bmassetpermissiondeleteconfirm_augl":1,"businessmanager_bmassetpermissionedit_augl":1,"businessmanager_bmassettabaddasset_augl":1,"businessmanager_bmassettabaddpeople_augl":1,"businessmanager_bmassettabassignpartner_augl":1,"businessmanager_bmchangetabinteraction_augl":1,"businessmanager_bmlistrowimpression_augl":1,"businessmanager_bmlistviewinteraction_augl":1,"businessmanager_bmlistviewtoggle_augl":1,"businessmanager_bmnavigationlevel_augl":1,"businessmanager_bmnavigationlevelended_augl":1,"businessmanager_bmopenassetintoolaction_augl":1,"businessmanager_bmpaneload_augl":1,"businessmanager_bmpaneloadended_augl":1,"businessmanager_bmpaneopen_augl":1,"businessmanager_bmpaneopenended_augl":1,"businessmanager_bmserverexception_augl":1,"businessmanager_bmusertabaddasset_augl":1,"businessmanager_bmvalidationerror_augl":1,"businessmanager_bmvettingpageinitialload_augl":1,"businessmanager_bmvettingpageinitialloadended_augl":1,"businessmanager_coreappexperience_augl":1,"businessmanager_coreappexperienceended_augl":1,"businessmanager_coreinteractionaccordianmenu_augl":1,"businessmanager_coreinteractionbutton_augl":1,"businessmanager_coreinteractioncheckbox_augl":1,"businessmanager_coreinteractiondropdown_augl":1,"businessmanager_coreinteractiondropdownended_augl":1,"businessmanager_coreinteractionradiobutton_augl":1,"businessmanager_coreinteractiontextinput_augl":1,"businessmanager_coreinteractiontextinputended_augl":1,"businessmanager_coreinteractiontoggle_augl":1,"businessmanager_coreuserinteraction_augl":1,"businessmanager_coreuserinteractionended_augl":1,"businessmanager_coreviewmodal_augl":1,"businessmanager_coreviewmodalended_augl":1,"candidate_portal_give_feedback":1,"chatroom_attachment_chat_button_tapped":1,"chatroom_join_request_cancelled":1,"chatroom_join_request_submitted":1,"cix_account_status_vpvd":1,"cix_warning_screens":1,"cloud_gaming_session_event":1,"comet_feed_story_menu_action":1,"comet_feed_vpvd_test":1000,"comet_group_mall_visit":1,"comet_media_options_click":1,"comet_media_remove_tag":1,"comet_media_tag":1,"comet_media_vpvd":1,"comet_news_feed_eof":1,"comet_news_feed_eof_unmounted":1,"comet_news_feed_loaded":1,"comet_opt_in_upsell_interaction":1,"comet_opt_out_survey":1,"comet_opt_out_survey_feedback":1,"comet_story_attachments":1,"comet_topnav_item_click":1,"comet_topnav_item_impression":1,"comment_inline_seen":1,"comment_inline_xout":1,"comment_ordering_mode":1,"commerce_feed_story_click":1,"commerce_feed_story_impression":1,"commerce_pdp_product_tag_click":1,"commerce_post_outbound_click":1,"commerce_see_more_from_shop_card_click":1,"commerce_shop_landing":1,"commerce_shop_product_card_vpv":1,"commerce_shop_product_details_imp":1,"commerce_view_product_tag":1,"commerce_view_product_tag_hscroll":1,"commerce_view_product_tag_overlapped":1,"commerce_view_product_tag_pill":1,"commerce_view_product_tag_pill_dwelled":1,"commerce_view_product_tagged_post":1,"commerce_view_see_more_from_shop":1,"commerce_view_shoppable_content_landing":1,"community_moderation_event":1,"community_resources_click_link_mobile":1,"community_resources_share_link_mobile":1,"consent_flow_interactions":1,"content_manager_confirmation_dialog_click":1,"content_manager_content_detail_view_cancel_flow":1,"content_manager_content_detail_view_click":1,"content_manager_content_detail_view_enter_flow":1,"content_manager_content_detail_view_exit_flow":1,"content_manager_content_detail_view_receive_response_failure":1,"content_manager_content_detail_view_receive_response_success":1,"content_manager_content_detail_view_send_request":1,"content_manager_content_item_click":1,"content_manager_content_item_impression":1,"content_manager_tab_item_click":1,"content_manager_tab_item_impression":1,"content_manager_typeahead_submit":1,"content_manager_workspace_click":1,"content_manager_workspace_enter_flow":1,"content_manager_workspace_exit_flow":1,"content_manager_workspace_impression":1,"content_manager_workspace_receive_response_failure":1,"content_manager_workspace_receive_response_success":1,"content_manager_workspace_send_request":1,"coworker_opt_out_flow":1,"create_living_room_action_link_impression":1,"deferred_feedback_experience":1,"delete_media_attempted":1,"e2e_deletion_requests":1,"external_metric_consumption_validation_event":1,"external_share_tracking_event":1,"fbt_impressions_batch":1,"friends_center_opened":1,"frtp_survey_response":1,"gaming_video_level_up_qp":1,"goodwill_product_system_share_menu_open":1,"griffin_tab_open":1,"group_leaders_engagement":1,"group_visit_action":1,"groups_mall_activation_pymi":1,"holy_diver_client_request":1,"instant_games_interactive_poll_event":1,"kototoro_comment_create_attempted":1,"kototoro_comment_created":1,"kototoro_comment_delete_attempted":1,"kototoro_comment_deleted":1,"kototoro_comment_emoji_selected":1,"kototoro_comment_exited":1,"kototoro_comment_follow_upsell_action":1,"kototoro_comment_follow_upsell_shown":1,"kototoro_comment_launched":1,"kototoro_comment_liked":1,"kototoro_comment_mention_selected_user":1,"kototoro_comment_mention_view_canceled":1,"kototoro_comment_mention_view_shown":1,"kototoro_comment_unliked":1,"kttr_fb_stories_button_click":1,"kttr_fb_stories_button_exposure":1,"kttr_fb_stories_upsell":1,"kttr_ig_feed_crosspost_composer":1,"kttr_ig_feed_crosspost_sharesheet":1,"kttr_ig_stories_crosspost_composer":1,"kttr_ig_stories_crosspost_sharesheet":1,"kttr_share_to_feed_error":1,"kttr_share_to_story_error":1,"kttr_shared_link":1,"labnet_event":1,"laminardevtools_coreappexperience_augl":1,"laminardevtools_coreappexperienceended_augl":1,"laminardevtools_coreuserinteraction_augl":1,"laminardevtools_coreuserinteractionended_augl":1,"laminardevtools_ldtactionselected_augl":1,"laminardevtools_ldtdispatchinfoviewchange_augl":1,"laminardevtools_ldtinit_augl":1,"laminardevtools_ldtsearchfilter_augl":1,"laminardevtools_ldttabchange_augl":1,"lasso_composer_fb_stories_toggle":1,"lasso_composer_fb_timeline_toggle":1,"lasso_composer_fb_toggle":1,"lasso_composer_ig_feed_toggle":1,"lasso_composer_ig_stories_toggle":1,"launch_message_seller_dialog":1,"ldp_touchpoint_logger":10000,"learning_click_component":1,"learning_exception":1,"learning_view_component":1,"lh_digest_logging":1,"live_join_group_cta_click":1,"live_trace_www_video_player":1,"locationmanager_coreappexperience_augl":1,"locationmanager_coreappexperienceended_augl":1,"locationmanager_coreinteractionaccordianmenu_augl":1,"locationmanager_coreinteractionbutton_augl":1,"locationmanager_coreinteractioncheckbox_augl":1,"locationmanager_coreinteractiondropdown_augl":1,"locationmanager_coreinteractiondropdownended_augl":1,"locationmanager_coreinteractionradiobutton_augl":1,"locationmanager_coreinteractiontextinput_augl":1,"locationmanager_coreinteractiontextinputended_augl":1,"locationmanager_coreinteractiontoggle_augl":1,"locationmanager_coreuserinteraction_augl":1,"locationmanager_coreuserinteractionended_augl":1,"locationmanager_coreviewmodal_augl":1,"locationmanager_coreviewmodalended_augl":1,"log_comet_canvas_app_time_spent":1,"log_messenger_frx_events_in_cix_screen":1,"ls_business_welcome_page_composer_hided":1,"ls_business_welcome_page_get_started_button_tapped":1,"ls_business_welcome_page_start":1,"ls_cta_click_client_handling_success":1,"ls_cta_displayed_button_tapped":1,"ls_did_tap_call_to_action":1,"ls_messenger_integrity_block_facebook_confirmed":1,"ls_messenger_integrity_block_facebook_failed":1,"ls_messenger_integrity_block_facebook_succeeded":1,"ls_messenger_integrity_block_facebook_tapped":1,"ls_messenger_integrity_block_messages_confirmed":1,"ls_messenger_integrity_block_messages_failed":1,"ls_messenger_integrity_block_messages_succeeded":1,"ls_messenger_integrity_block_messages_tapped":1,"ls_messenger_integrity_block_view_enter":1,"ls_messenger_integrity_ignore_confirmed":1,"ls_messenger_integrity_ignore_started":1,"ls_messenger_integrity_learn_more_tapped":1,"ls_messenger_integrity_unblock_facebook_confirmed":1,"ls_messenger_integrity_unblock_facebook_failed":1,"ls_messenger_integrity_unblock_facebook_succeeded":1,"ls_messenger_integrity_unblock_facebook_tapped":1,"ls_messenger_integrity_unblock_messages_confirmed":1,"ls_messenger_integrity_unblock_messages_failed":1,"ls_messenger_integrity_unblock_messages_succeeded":1,"ls_messenger_integrity_unblock_messages_tapped":1,"ls_persistent_menu_client_handling_success":1,"ls_persistent_menu_icon_tapped":1,"ls_persistent_menu_is_set_up":1,"managedlift_coreappexperience_augl":1,"managedlift_coreappexperienceended_augl":1,"managedlift_coreinteractionbutton_augl":1,"managedlift_coreinteractioncheckbox_augl":1,"managedlift_coreinteractioncollapse_augl":1,"managedlift_coreinteractionexpand_augl":1,"managedlift_coreinteractionmouseover_augl":1,"managedlift_coreinteractionmouseoverended_augl":1,"managedlift_coreinteractionpanetab_augl":1,"managedlift_coreinteractionradiobutton_augl":1,"managedlift_coreinteractionsearchbar_augl":1,"managedlift_coreinteractionsearchbarended_augl":1,"managedlift_coreuserinteraction_augl":1,"managedlift_coreuserinteractionended_augl":1,"managedlift_coreviewmodal_augl":1,"managedlift_coreviewmodalended_augl":1,"managedlift_mlapierror_augl":1,"managedlift_mlerror_augl":1,"managedlift_mlfieldset_augl":1,"managedlift_mlsurveyrespond_augl":1,"managedlift_mltypeaheadselect_augl":1,"managedlift_mlvalidationerror_augl":1,"marketplace_pdp_tracking_data_tracker":1,"member_accepted_hcp_historical_content_dialog":1,"member_accepted_hcp_message_request":1,"member_clicked_hcp_message_profile_button":1,"member_clicked_hcp_reply_in_messenger":1,"member_continued_hcp_ed_interstitial":1,"member_continued_hcp_messaging_warning":1,"member_exited_hcp_ed_interstitial":1,"member_exited_hcp_historical_content_dialog":1,"member_rejected_hcp_message_request":1,"member_saw_hcp_accepted_message":1,"member_saw_hcp_ed_interstitial":1,"member_saw_hcp_historical_content_dialog":1,"member_saw_hcp_message_request":1,"member_saw_hcp_message_request_composer":1,"member_saw_hcp_messaging_warning":1,"member_sent_hcp_message_request":1,"member_typed_hcp_message_request_composer":1,"mentorship":1,"mentorship_cohort":1,"mentorship_user":1,"messenger_ads_link_click":1,"messenger_ads_link_click_cta":1,"messenger_ads_message_seen_inbox":1,"messenger_ads_message_seen_thread":1,"misinfo_frontend":1,"mk_client_event":1,"news_digest_content_impression_event":1,"news_digest_outbound_click_event":1,"news_digest_primary_click_event":1,"news_digest_secondary_click_event":1,"news_digest_unit_impression_event":1,"notif_list_bottom_collision":10000,"open_seen_summary":1,"overlays_tos_accept":1,"pages_composer_composer_cancel_flow":1,"pages_composer_composer_enter_flow":1,"pages_composer_composer_focus_acquired":1,"pages_composer_composer_focus_lost":1,"pages_composer_composer_impression":1,"pages_composer_composer_submit_flow":1,"pages_composer_composer_submit_flow_failure":1,"pages_composer_composer_submit_flow_success":1,"pages_composer_consolidated_entry_click":1,"pages_composer_draft_post_cancel_flow":1,"pages_composer_draft_post_edit_enter_flow":1,"pages_composer_draft_post_edit_submit_flow":1,"pages_composer_draft_post_enter_flow":1,"pages_composer_draft_post_submit_flow":1,"pages_composer_draft_reminder_card_impression":1,"pages_composer_draft_reminder_unit_impression":1,"pages_composer_footer_setting_button_click":1,"pages_composer_media_attachment_button_click":1,"pages_composer_media_attachment_button_impression":1,"pages_composer_offer_composer_cancel_flow":1,"pages_composer_offer_composer_enter_flow":1,"pages_composer_offer_composer_photo_uploader_submit_flow":1,"pages_composer_offer_composer_photo_uploader_submit_flow_failure":1,"pages_composer_offer_composer_photo_uploader_submit_flow_success":1,"pages_composer_offer_composer_submit_flow":1,"pages_composer_offer_composer_submit_flow_failure":1,"pages_composer_offer_composer_submit_flow_success":1,"pages_composer_offer_composer_update_value":1,"pages_composer_preview_button_click":1,"pages_composer_schedule_post_cancel_flow":1,"pages_composer_schedule_post_enter_flow":1,"pages_composer_schedule_post_submit_flow":1,"pages_inbox_impression":1,"pages_launchpoint_pages_you_manage_click":1,"pages_launchpoint_view_message_click":1,"pages_launchpoint_view_notification_click":1,"pages_message_thread_impression":1,"pages_page_action_click":1,"pages_page_action_impression":1,"pages_page_address_click":1,"pages_page_card_impression":1,"pages_page_card_see_all_click":1,"pages_page_cover_click":1,"pages_page_cover_impression":1,"pages_page_email_click":1,"pages_page_get_directions_click":1,"pages_page_like_chaining_unit_impression":1,"pages_page_map_click":1,"pages_page_message_click":1,"pages_page_notification_menu_impression":1,"pages_page_photo_album_click":1,"pages_page_photo_click":1,"pages_page_settings_impression":1,"pages_page_surface_impression":1,"pages_page_video_click":1,"pages_page_website_click":1,"pages_permalink_impression":1,"partner_home_lookup_asset":1,"partner_home_view_partner":1,"partner_home_work_chat_clicked":1,"people_you_may_follow":1,"perf":1,"pii_action_flow":1,"political_ads_infosheet":1,"post_debugger_usage":1,"privacy_checkup_event":1,"pyma_click":1,"pyma_impression":1,"qp_action":1,"qp_impression":1,"regular_pymk_add":1,"regular_pymk_imp":1,"regular_pymk_profile":1,"regular_pymk_xout":1,"save_click":1,"save_item_impression":1,"save_surface_impression":1,"saved_dashboard_imp":1,"saved_dashboard_list_landing_imp":1,"saved_see_all_lists_view_imp":1,"sc_audio_messages_event":1,"search_result_page_logging_inline_action":1,"search_result_page_logging_item_clicked":1,"search_result_page_logging_results_loaded":1,"search_result_page_logging_viewport_view":1,"search_results_logging_module_unit_data":1,"search_results_logging_result_unit_data":1,"search_typeahead_logging_session":1,"sextortion_victim_support_option_clicked":1,"share_dialog_unified_composer":1,"smart_compose_candidates_generated":1,"smart_compose_candidates_queried":1,"smart_compose_matching_suggestion":1,"smart_compose_suggestion_clicked":1,"smart_compose_suggestion_displayed":1,"streaming_sdk_event":1,"streaming_sdk_metadata":1,"streaming_sdk_session_summary":1,"tap_add_to_pages_story":1,"tap_select_page":1,"ufi_share_menu_copy_link":1,"unidash_bladerunner_events":1,"vehicle_entity_page_user_action_event":1,"verse":1,"video_action_source_event":1,"video_search_relevancy_feedback":1,"vod_pnc_messenger_cta_click":1,"vod_pnc_people_sheet_impression":1,"vod_pnc_people_sheet_thumbnail_impression":1,"vod_pnc_see_all_reactions_click":1,"volunteering_click_unit":1,"volunteering_view_unit":1,"voter_registration_attachment_tap_change_state":1,"voter_registration_post_impression":1,"voter_registration_post_tap_register":1,"voter_registration_qp_tap_edit_location":1,"voter_registration_state_selector_tap_state":1,"wayfinder_mapbox_data_load":1,"weather_bookmark_forecast_scrolled":1,"weather_bookmark_impression":1,"weather_bookmark_scroll_forecast":1,"weather_bookmark_settings_tapped":1,"weather_bookmark_tap_city_tab":1,"weather_bookmark_tap_future_day":1,"weather_bookmark_tap_hourly_forecast":1,"weather_bookmark_tap_nowcast":1,"weather_daily_notifications_mutation_error":1,"weather_daily_notifications_turned_off":1,"weather_daily_notifications_turned_on":1,"weather_live_alerts_mutation_error":1,"weather_live_alerts_turned_off":1,"weather_live_alerts_turned_on":1,"weather_settings_add_city":1,"weather_settings_daily_notification_use_current_location":1,"weather_settings_delete_city":1,"weather_settings_error_state_dismissed":1,"weather_settings_error_state_fixed":1,"weather_settings_impression":1,"weather_settings_notification_location_tapped":1,"weather_settings_tap_city_row":1,"weather_settings_temperature_unit_changed":1,"webauthn_authenticator_login_failure":1,"webauthn_authenticator_login_success":1,"webauthn_authenticator_register_failure":1,"webauthn_authenticator_register_success":1,"work_shift_cover_detail_screen_message_event":1,"work_shift_cover_feed_attachment_click_to_detail_event":1,"work_shift_cover_feed_attachment_message_event":1,"work_thanks_mobile_ui_confirm_button_clicked":1,"work_thanks_mobile_ui_dialog_opened":1,"attempt_to_send_reply":1,"bi_mlex_ad_history_click":1,"bi_mlex_ad_history_impression":1,"bi_mlex_feedback_survey_evolution_response":1,"camera_roll_cancelled":1,"camera_roll_finished":1,"camera_roll_folder_in_dropdown_clicked":1,"camera_roll_header_camera_clicked":1,"camera_roll_header_cancel_button_clicked":1,"camera_roll_header_folder_clicked":1,"camera_roll_header_next_button_clicked":1,"camera_roll_magnifying_glass_button_clicked":1,"camera_roll_media_item_clicked":1,"camera_roll_opened":1,"close_story":1,"composer_cancel":1,"composer_entry":1,"composer_focus_acquired":1,"composer_focus_lost":1,"composer_init":1,"composer_post":1,"composer_post_cancel":1,"composer_post_failure":1,"composer_post_mutation_start":1,"composer_post_server_content_rendered":1,"composer_post_success":1,"composer_publish_flow":1,"crisis_click_unit":1,"crisis_tool_view_page":1,"crisis_view_unit":1,"feed_friend_request_confirm":1,"feed_friend_request_delete":1,"feed_friend_request_imp":1,"feed_friend_request_profile":1,"living_room":1,"marketplace_click":1,"marketplace_feed_load":1,"marketplace_impression":1,"marketplace_surface_enter":1,"marketplace_surface_exit":1,"open_media":1,"open_story":1,"pymk_add":1,"pymk_imp":1,"pymk_profile":1,"pymk_xout":1,"request_click":1,"request_seen":1,"saved_collection_ego_item_image_clicked":1,"send_story_post_failed_notification":1,"stories_interactive_feedback":1,"story_card_impression":1,"story_card_timespent":1,"story_interactive_item_click":1,"story_interactive_item_rendering":1,"story_navigation":1,"story_profile_impression":1,"why_covered_ccs_link_followed":1,"why_covered_ccs_snippet_viewed":1,"why_covered_error_generating_cms":1,"why_covered_how_snippet_viewed":1}},4308],["FDSClientConfig",[],{"mountTimeSamplingRate":10000,"logger":null,"isAdsInterfaces":false},3410],["CurrencyConfig",[],{"adsCurrenciesByCode":{"AED":{"iso":"AED","format":"{amount} {symbol}","symbol":"\u062f.\u0625.","offset":100,"name":"Dirham des \u00c9mirats arabes unis"},"ARS":{"iso":"ARS","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Peso argentin"},"AUD":{"iso":"AUD","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Dollar australien"},"BDT":{"iso":"BDT","format":"{amount} {symbol}","symbol":"\u09f3","offset":100,"name":"Taka du Bangladesh"},"BOB":{"iso":"BOB","format":"{amount} {symbol}","symbol":"Bs.","offset":100,"name":"Boliviano bolivien"},"BRL":{"iso":"BRL","format":"{amount} {symbol}","symbol":"R$","offset":100,"name":"Real br\u00e9silien"},"CAD":{"iso":"CAD","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Dollar canadien"},"CHF":{"iso":"CHF","format":"{amount} {symbol}","symbol":"Fr.","offset":100,"name":"Franc suisse"},"CLP":{"iso":"CLP","format":"{amount} {symbol}","symbol":"$","offset":1,"name":"Peso chilien"},"CNY":{"iso":"CNY","format":"{amount} {symbol}","symbol":"\u00a5","offset":100,"name":"Yuan chinois"},"COP":{"iso":"COP","format":"{amount} {symbol}","symbol":"$","offset":1,"name":"Peso colombien"},"CRC":{"iso":"CRC","format":"{amount} {symbol}","symbol":"\u20a1","offset":1,"name":"Colon costaricain"},"CZK":{"iso":"CZK","format":"{amount} {symbol}","symbol":"K\u010d","offset":100,"name":"Couronne tch\u00e8que"},"DKK":{"iso":"DKK","format":"{amount} {symbol}","symbol":"kr.","offset":100,"name":"Couronne danoise"},"DZD":{"iso":"DZD","format":"{amount} {symbol}","symbol":"DA","offset":100,"name":"Dinar alg\u00e9rien"},"EGP":{"iso":"EGP","format":"{amount} {symbol}","symbol":"\u062c.\u0645.","offset":100,"name":"Livre \u00e9gyptienne"},"EUR":{"iso":"EUR","format":"{amount} {symbol}","symbol":"\u20ac","offset":100,"name":"Euro"},"GBP":{"iso":"GBP","format":"{amount} {symbol}","symbol":"\u00a3","offset":100,"name":"Livre sterling"},"GTQ":{"iso":"GTQ","format":"{amount} {symbol}","symbol":"Q","offset":100,"name":"Quetzal guat\u00e9malt\u00e8que"},"HKD":{"iso":"HKD","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Dollar de Hong Kong"},"HNL":{"iso":"HNL","format":"{amount} {symbol}","symbol":"L.","offset":100,"name":"Lempira hondurien"},"HUF":{"iso":"HUF","format":"{amount} {symbol}","symbol":"Ft","offset":1,"name":"Forint hongrois"},"IDR":{"iso":"IDR","format":"{amount} {symbol}","symbol":"Rp","offset":1,"name":"Roupie indon\u00e9sienne"},"ILS":{"iso":"ILS","format":"{amount} {symbol}","symbol":"\u20aa","offset":100,"name":"Nouveau Shekel israelien"},"INR":{"iso":"INR","format":"{amount} {symbol}","symbol":"\u20b9","offset":100,"name":"Roupie indienne"},"ISK":{"iso":"ISK","format":"{amount} {symbol}","symbol":"kr.","offset":1,"name":"Couronne islandaise"},"JPY":{"iso":"JPY","format":"{amount} {symbol}","symbol":"\u00a5","offset":1,"name":"Yen japonais"},"KES":{"iso":"KES","format":"{amount} {symbol}","symbol":"KSh","offset":100,"name":"Shilling kenyan"},"KRW":{"iso":"KRW","format":"{amount} {symbol}","symbol":"\u20a9","offset":1,"name":"Won cor\u00e9en"},"MOP":{"iso":"MOP","format":"{amount} {symbol}","symbol":"MOP","offset":100,"name":"Pataca de Macau"},"MXN":{"iso":"MXN","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Peso mexicain"},"MYR":{"iso":"MYR","format":"{amount} {symbol}","symbol":"RM","offset":100,"name":"Ringgit malaisien"},"NGN":{"iso":"NGN","format":"{amount} {symbol}","symbol":"\u20a6","offset":100,"name":"Na\u00efra nig\u00e9rian"},"NIO":{"iso":"NIO","format":"{amount} {symbol}","symbol":"C$","offset":100,"name":"C\u00f3rdoba nicaraguayen"},"NOK":{"iso":"NOK","format":"{amount} {symbol}","symbol":"kr","offset":100,"name":"Couronne norv\u00e9gienne"},"NZD":{"iso":"NZD","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Dollar n\u00e9o-z\u00e9landais"},"PEN":{"iso":"PEN","format":"{amount} {symbol}","symbol":"S\/","offset":100,"name":"Nuevo Sol p\u00e9ruvien"},"PHP":{"iso":"PHP","format":"{amount} {symbol}","symbol":"\u20b1","offset":100,"name":"Peso philippin"},"PKR":{"iso":"PKR","format":"{amount} {symbol}","symbol":"Rs","offset":100,"name":"Roupie pakistanaise"},"PLN":{"iso":"PLN","format":"{amount} {symbol}","symbol":"z\u0142","offset":100,"name":"Zloty polonais"},"PYG":{"iso":"PYG","format":"{amount} {symbol}","symbol":"\u20b2","offset":1,"name":"Guarani paraguayen"},"QAR":{"iso":"QAR","format":"{amount} {symbol}","symbol":"\u0631.\u0642.","offset":100,"name":"Riyal qatari"},"RON":{"iso":"RON","format":"{amount} {symbol}","symbol":"lei","offset":100,"name":"Leu roumain"},"RUB":{"iso":"RUB","format":"{amount} {symbol}","symbol":"p.","offset":100,"name":"Rouble russe"},"SAR":{"iso":"SAR","format":"{amount} {symbol}","symbol":"\u0631.\u0633.","offset":100,"name":"Riyal d\u2019Arabie Saoudite"},"SEK":{"iso":"SEK","format":"{amount} {symbol}","symbol":"kr","offset":100,"name":"Couronne su\u00e9doise"},"SGD":{"iso":"SGD","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Dollar de Singapour"},"THB":{"iso":"THB","format":"{amount} {symbol}","symbol":"\u0e3f","offset":100,"name":"Baht tha\u00eflandais"},"TRY":{"iso":"TRY","format":"{amount} {symbol}","symbol":"TL","offset":100,"name":"Lire turque"},"TWD":{"iso":"TWD","format":"{amount} {symbol}","symbol":"NT$","offset":1,"name":"Dollar de Taiwan"},"USD":{"iso":"USD","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Dollar am\u00e9ricain"},"UYU":{"iso":"UYU","format":"{amount} {symbol}","symbol":"$U","offset":100,"name":"Peso uruguayen"},"VND":{"iso":"VND","format":"{amount} {symbol}","symbol":"\u20ab","offset":1,"name":"Dong vietnamien"},"ZAR":{"iso":"ZAR","format":"{amount} {symbol}","symbol":"R","offset":100,"name":"Rand sud-africain"}},"adsCurrencyCodes":["AED","ARS","AUD","BDT","BOB","BRL","CAD","CHF","CLP","CNY","COP","CRC","CZK","DKK","DZD","EGP","EUR","GBP","GTQ","HKD","HNL","HUF","IDR","ILS","INR","ISK","JPY","KES","KRW","MOP","MXN","MYR","NGN","NIO","NOK","NZD","PEN","PHP","PKR","PLN","PYG","QAR","RON","RUB","SAR","SEK","SGD","THB","TRY","TWD","USD","UYU","VND","ZAR"],"allCurrenciesByCode":{"AED":{"iso":"AED","format":"{amount} {symbol}","symbol":"\u062f.\u0625.","offset":100,"name":"Dirham des \u00c9mirats arabes unis"},"AFN":{"iso":"AFN","format":"{amount} {symbol}","symbol":"\u060b","offset":100,"name":"Afghani d\u2019Afghanistan"},"ALL":{"iso":"ALL","format":"{amount} {symbol}","symbol":"Lek","offset":100,"name":"Lek albanais"},"AMD":{"iso":"AMD","format":"{amount} {symbol}","symbol":"\u0564\u0580.","offset":100,"name":"Dram arm\u00e9nien"},"ANG":{"iso":"ANG","format":"{amount} {symbol}","symbol":"ANG","offset":100,"name":"Florin des Antilles n\u00e9erlandaises"},"AOA":{"iso":"AOA","format":"{amount} {symbol}","symbol":"AOA","offset":100,"name":"Kwanza d\u2019Angola"},"ARS":{"iso":"ARS","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Peso argentin"},"AUD":{"iso":"AUD","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Dollar australien"},"AWG":{"iso":"AWG","format":"{amount} {symbol}","symbol":"Afl.","offset":100,"name":"Florin arubais"},"AZN":{"iso":"AZN","format":"{amount} {symbol}","symbol":"\u043c\u0430\u043d.","offset":100,"name":"Manat azerba\u00efdjanais"},"BAM":{"iso":"BAM","format":"{amount} {symbol}","symbol":"BAM","offset":100,"name":"Mark convertible de Bosnie-Herz\u00e9govine"},"BBD":{"iso":"BBD","format":"{amount} {symbol}","symbol":"Bds$","offset":100,"name":"Dollar barbadien"},"BDT":{"iso":"BDT","format":"{amount} {symbol}","symbol":"\u09f3","offset":100,"name":"Taka du Bangladesh"},"BGN":{"iso":"BGN","format":"{amount} {symbol}","symbol":"\u043b\u0432.","offset":100,"name":"Lev bulgare"},"BHD":{"iso":"BHD","format":"{amount} {symbol}","symbol":"\u062f.\u0628.","offset":100,"name":"Dinar bahre\u00efni"},"BIF":{"iso":"BIF","format":"{amount} {symbol}","symbol":"FBu","offset":1,"name":"Franc burundais"},"BMD":{"iso":"BMD","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Dollar des Bermudes"},"BND":{"iso":"BND","format":"{amount} {symbol}","symbol":"B$","offset":100,"name":"Dollar de Brunei"},"BOB":{"iso":"BOB","format":"{amount} {symbol}","symbol":"Bs.","offset":100,"name":"Boliviano bolivien"},"BRL":{"iso":"BRL","format":"{amount} {symbol}","symbol":"R$","offset":100,"name":"Real br\u00e9silien"},"BSD":{"iso":"BSD","format":"{amount} {symbol}","symbol":"B$","offset":100,"name":"Dollar des Bahamas"},"BTN":{"iso":"BTN","format":"{amount} {symbol}","symbol":"Nu.","offset":100,"name":"Ngultrum bhoutanais"},"BWP":{"iso":"BWP","format":"{amount} {symbol}","symbol":"P","offset":100,"name":"Pula botswanais"},"BYN":{"iso":"BYN","format":"{amount} {symbol}","symbol":"Br","offset":100,"name":"Rouble bi\u00e9lorusse"},"BZD":{"iso":"BZD","format":"{amount} {symbol}","symbol":"BZ$","offset":100,"name":"Dollar de Belize"},"CAD":{"iso":"CAD","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Dollar canadien"},"CDF":{"iso":"CDF","format":"{amount} {symbol}","symbol":"FC","offset":100,"name":"Franc congolais"},"CHF":{"iso":"CHF","format":"{amount} {symbol}","symbol":"Fr.","offset":100,"name":"Franc suisse"},"CLP":{"iso":"CLP","format":"{amount} {symbol}","symbol":"$","offset":1,"name":"Peso chilien"},"CNY":{"iso":"CNY","format":"{amount} {symbol}","symbol":"\u00a5","offset":100,"name":"Yuan chinois"},"COP":{"iso":"COP","format":"{amount} {symbol}","symbol":"$","offset":1,"name":"Peso colombien"},"CRC":{"iso":"CRC","format":"{amount} {symbol}","symbol":"\u20a1","offset":1,"name":"Colon costaricain"},"CVE":{"iso":"CVE","format":"{amount} {symbol}","symbol":"$","offset":1,"name":"Escudo cap-verdien"},"CZK":{"iso":"CZK","format":"{amount} {symbol}","symbol":"K\u010d","offset":100,"name":"Couronne tch\u00e8que"},"DJF":{"iso":"DJF","format":"{amount} {symbol}","symbol":"Fdj","offset":1,"name":"Franc Djibouti"},"DKK":{"iso":"DKK","format":"{amount} {symbol}","symbol":"kr.","offset":100,"name":"Couronne danoise"},"DOP":{"iso":"DOP","format":"{amount} {symbol}","symbol":"RD$","offset":100,"name":"Peso dominicain"},"DZD":{"iso":"DZD","format":"{amount} {symbol}","symbol":"DA","offset":100,"name":"Dinar alg\u00e9rien"},"EGP":{"iso":"EGP","format":"{amount} {symbol}","symbol":"\u062c.\u0645.","offset":100,"name":"Livre \u00e9gyptienne"},"ERN":{"iso":"ERN","format":"{amount} {symbol}","symbol":"Nfk","offset":100,"name":"Nakfa \u00e9rythr\u00e9en"},"ETB":{"iso":"ETB","format":"{amount} {symbol}","symbol":"Br","offset":100,"name":"Birr \u00e9thiopien"},"EUR":{"iso":"EUR","format":"{amount} {symbol}","symbol":"\u20ac","offset":100,"name":"Euro"},"FBZ":{"iso":"FBZ","format":"{amount} {symbol}","symbol":"C","offset":100,"name":"cr\u00e9dits"},"FJD":{"iso":"FJD","format":"{amount} {symbol}","symbol":"FJ$","offset":100,"name":"Dollar fidjien"},"FKP":{"iso":"FKP","format":"{amount} {symbol}","symbol":"\u00a3","offset":100,"name":"Livre des \u00celes Malouines"},"GBP":{"iso":"GBP","format":"{amount} {symbol}","symbol":"\u00a3","offset":100,"name":"Livre sterling"},"GEL":{"iso":"GEL","format":"{amount} {symbol}","symbol":"\u20be","offset":100,"name":"Lari g\u00e9orgien"},"GHS":{"iso":"GHS","format":"{amount} {symbol}","symbol":"GHS","offset":100,"name":"C\u00e9di ghan\u00e9en"},"GIP":{"iso":"GIP","format":"{amount} {symbol}","symbol":"\u00a3","offset":100,"name":"Livre de Gibraltar"},"GMD":{"iso":"GMD","format":"{amount} {symbol}","symbol":"D","offset":100,"name":"Dalasi gambien"},"GNF":{"iso":"GNF","format":"{amount} {symbol}","symbol":"FG","offset":1,"name":"Franc guin\u00e9en"},"GTQ":{"iso":"GTQ","format":"{amount} {symbol}","symbol":"Q","offset":100,"name":"Quetzal guat\u00e9malt\u00e8que"},"GYD":{"iso":"GYD","format":"{amount} {symbol}","symbol":"G$","offset":100,"name":"Dollar guyanien"},"HKD":{"iso":"HKD","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Dollar de Hong Kong"},"HNL":{"iso":"HNL","format":"{amount} {symbol}","symbol":"L.","offset":100,"name":"Lempira hondurien"},"HRK":{"iso":"HRK","format":"{amount} {symbol}","symbol":"kn","offset":100,"name":"Kuna croate"},"HTG":{"iso":"HTG","format":"{amount} {symbol}","symbol":"G","offset":100,"name":"Gourde ha\u00eftienne"},"HUF":{"iso":"HUF","format":"{amount} {symbol}","symbol":"Ft","offset":1,"name":"Forint hongrois"},"IDR":{"iso":"IDR","format":"{amount} {symbol}","symbol":"Rp","offset":1,"name":"Roupie indon\u00e9sienne"},"ILS":{"iso":"ILS","format":"{amount} {symbol}","symbol":"\u20aa","offset":100,"name":"Nouveau Shekel israelien"},"INR":{"iso":"INR","format":"{amount} {symbol}","symbol":"\u20b9","offset":100,"name":"Roupie indienne"},"IQD":{"iso":"IQD","format":"{amount} {symbol}","symbol":"\u062f.\u0639.","offset":100,"name":"Dinar iraquien"},"ISK":{"iso":"ISK","format":"{amount} {symbol}","symbol":"kr.","offset":1,"name":"Couronne islandaise"},"JMD":{"iso":"JMD","format":"{amount} {symbol}","symbol":"J$","offset":100,"name":"Dollar jama\u00efcain"},"JOD":{"iso":"JOD","format":"{amount} {symbol}","symbol":"\u062f.\u0627.","offset":100,"name":"Dinar jordanien"},"JPY":{"iso":"JPY","format":"{amount} {symbol}","symbol":"\u00a5","offset":1,"name":"Yen japonais"},"KES":{"iso":"KES","format":"{amount} {symbol}","symbol":"KSh","offset":100,"name":"Shilling kenyan"},"KGS":{"iso":"KGS","format":"{amount} {symbol}","symbol":"\u0441\u043e\u043c","offset":100,"name":"Som kirghize"},"KHR":{"iso":"KHR","format":"{amount} {symbol}","symbol":"\u17db","offset":100,"name":"Riel cambodgien"},"KMF":{"iso":"KMF","format":"{amount} {symbol}","symbol":"CF","offset":1,"name":"Franc comorien"},"KRW":{"iso":"KRW","format":"{amount} {symbol}","symbol":"\u20a9","offset":1,"name":"Won cor\u00e9en"},"KWD":{"iso":"KWD","format":"{amount} {symbol}","symbol":"\u062f.\u0643.","offset":100,"name":"Dinar kowe\u00eftien"},"KYD":{"iso":"KYD","format":"{amount} {symbol}","symbol":"CI$","offset":100,"name":"Dollar des \u00eeles Ca\u00efmans"},"KZT":{"iso":"KZT","format":"{amount} {symbol}","symbol":"\u0422","offset":100,"name":"Tenge kazakh"},"LAK":{"iso":"LAK","format":"{amount} {symbol}","symbol":"\u20ad","offset":100,"name":"Kip laotien"},"LBP":{"iso":"LBP","format":"{amount} {symbol}","symbol":"\u0644.\u0644.","offset":100,"name":"Livre libanaise"},"LKR":{"iso":"LKR","format":"{amount} {symbol}","symbol":"LKR","offset":100,"name":"Roupie srilankaise"},"LRD":{"iso":"LRD","format":"{amount} {symbol}","symbol":"L$","offset":100,"name":"Dollar lib\u00e9rien"},"LSL":{"iso":"LSL","format":"{amount} {symbol}","symbol":"L","offset":100,"name":"Loti du Lesotho"},"LTL":{"iso":"LTL","format":"{amount} {symbol}","symbol":"Lt","offset":100,"name":"Litas lituanien"},"LVL":{"iso":"LVL","format":"{amount} {symbol}","symbol":"Ls","offset":100,"name":"Lats letton"},"LYD":{"iso":"LYD","format":"{amount} {symbol}","symbol":"\u062f.\u0644.","offset":100,"name":"Dinar libyen"},"MAD":{"iso":"MAD","format":"{amount} {symbol}","symbol":"\u062f.\u0645.","offset":100,"name":"Dirham marocain"},"MDL":{"iso":"MDL","format":"{amount} {symbol}","symbol":"lei","offset":100,"name":"Leu moldave"},"MGA":{"iso":"MGA","format":"{amount} {symbol}","symbol":"Ar","offset":5,"name":"Ariary malgache"},"MKD":{"iso":"MKD","format":"{amount} {symbol}","symbol":"\u0434\u0435\u043d.","offset":100,"name":"Dinar mac\u00e9donien"},"MMK":{"iso":"MMK","format":"{amount} {symbol}","symbol":"Ks","offset":100,"name":"Kyat de Myanmar"},"MNT":{"iso":"MNT","format":"{amount} {symbol}","symbol":"\u20ae","offset":100,"name":"Tugrik mongolien"},"MOP":{"iso":"MOP","format":"{amount} {symbol}","symbol":"MOP","offset":100,"name":"Pataca de Macau"},"MRO":{"iso":"MRO","format":"{amount} {symbol}","symbol":"UM","offset":5,"name":"Ouguiya mauritanien"},"MUR":{"iso":"MUR","format":"{amount} {symbol}","symbol":"MUR","offset":100,"name":"Roupie mauricienne"},"MVR":{"iso":"MVR","format":"{amount} {symbol}","symbol":"\u0783.","offset":100,"name":"Rufiyaa maldivienne"},"MWK":{"iso":"MWK","format":"{amount} {symbol}","symbol":"MK","offset":100,"name":"Kwacha malawien"},"MXN":{"iso":"MXN","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Peso mexicain"},"MYR":{"iso":"MYR","format":"{amount} {symbol}","symbol":"RM","offset":100,"name":"Ringgit malaisien"},"MZN":{"iso":"MZN","format":"{amount} {symbol}","symbol":"MT","offset":100,"name":"Metical du Mozambique"},"NAD":{"iso":"NAD","format":"{amount} {symbol}","symbol":"N$","offset":100,"name":"Dollar namibien"},"NGN":{"iso":"NGN","format":"{amount} {symbol}","symbol":"\u20a6","offset":100,"name":"Na\u00efra nig\u00e9rian"},"NIO":{"iso":"NIO","format":"{amount} {symbol}","symbol":"C$","offset":100,"name":"C\u00f3rdoba nicaraguayen"},"NOK":{"iso":"NOK","format":"{amount} {symbol}","symbol":"kr","offset":100,"name":"Couronne norv\u00e9gienne"},"NPR":{"iso":"NPR","format":"{amount} {symbol}","symbol":"\u0930\u0942","offset":100,"name":"Roupie n\u00e9palaise"},"NZD":{"iso":"NZD","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Dollar n\u00e9o-z\u00e9landais"},"OMR":{"iso":"OMR","format":"{amount} {symbol}","symbol":"\u0631.\u0639.","offset":100,"name":"Rial omanais"},"PAB":{"iso":"PAB","format":"{amount} {symbol}","symbol":"B\/.","offset":100,"name":"Balboa du Panama"},"PEN":{"iso":"PEN","format":"{amount} {symbol}","symbol":"S\/","offset":100,"name":"Nuevo Sol p\u00e9ruvien"},"PGK":{"iso":"PGK","format":"{amount} {symbol}","symbol":"K","offset":100,"name":"Kina de Papouasie-Nouvelle-Guin\u00e9e"},"PHP":{"iso":"PHP","format":"{amount} {symbol}","symbol":"\u20b1","offset":100,"name":"Peso philippin"},"PKR":{"iso":"PKR","format":"{amount} {symbol}","symbol":"Rs","offset":100,"name":"Roupie pakistanaise"},"PLN":{"iso":"PLN","format":"{amount} {symbol}","symbol":"z\u0142","offset":100,"name":"Zloty polonais"},"PYG":{"iso":"PYG","format":"{amount} {symbol}","symbol":"\u20b2","offset":1,"name":"Guarani paraguayen"},"QAR":{"iso":"QAR","format":"{amount} {symbol}","symbol":"\u0631.\u0642.","offset":100,"name":"Riyal qatari"},"RON":{"iso":"RON","format":"{amount} {symbol}","symbol":"lei","offset":100,"name":"Leu roumain"},"RSD":{"iso":"RSD","format":"{amount} {symbol}","symbol":"RSD","offset":100,"name":"Dinar serbe"},"RUB":{"iso":"RUB","format":"{amount} {symbol}","symbol":"p.","offset":100,"name":"Rouble russe"},"RWF":{"iso":"RWF","format":"{amount} {symbol}","symbol":"FRw","offset":1,"name":"Franc rwandais"},"SAR":{"iso":"SAR","format":"{amount} {symbol}","symbol":"\u0631.\u0633.","offset":100,"name":"Riyal d\u2019Arabie Saoudite"},"SBD":{"iso":"SBD","format":"{amount} {symbol}","symbol":"SI$","offset":100,"name":"Dollar des \u00celes Salomon"},"SCR":{"iso":"SCR","format":"{amount} {symbol}","symbol":"SR","offset":100,"name":"Roupie des Seychelles"},"SEK":{"iso":"SEK","format":"{amount} {symbol}","symbol":"kr","offset":100,"name":"Couronne su\u00e9doise"},"SGD":{"iso":"SGD","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Dollar de Singapour"},"SHP":{"iso":"SHP","format":"{amount} {symbol}","symbol":"\u00a3","offset":100,"name":"Livre de Sainte-H\u00e9l\u00e8ne"},"SKK":{"iso":"SKK","format":"{amount} {symbol}","symbol":"Sk","offset":100,"name":"Couronne slovaque"},"SLL":{"iso":"SLL","format":"{amount} {symbol}","symbol":"Le","offset":100,"name":"Leone de Sierra Leone"},"SOS":{"iso":"SOS","format":"{amount} {symbol}","symbol":"S","offset":100,"name":"Shilling somalien"},"SRD":{"iso":"SRD","format":"{amount} {symbol}","symbol":"SRD","offset":100,"name":"Dollar de Surinam"},"SSP":{"iso":"SSP","format":"{amount} {symbol}","symbol":"\u00a3","offset":100,"name":"livre sud-soudanaise"},"STD":{"iso":"STD","format":"{amount} {symbol}","symbol":"Db","offset":100,"name":"Dobra de Sao Tom\u00e9"},"SVC":{"iso":"SVC","format":"{amount} {symbol}","symbol":"\u20a1","offset":100,"name":"Colon salvadorien"},"SZL":{"iso":"SZL","format":"{amount} {symbol}","symbol":"L","offset":100,"name":"Lilangeni du Swaziland"},"THB":{"iso":"THB","format":"{amount} {symbol}","symbol":"\u0e3f","offset":100,"name":"Baht tha\u00eflandais"},"TJS":{"iso":"TJS","format":"{amount} {symbol}","symbol":"\u0441.","offset":100,"name":"Somoni tadjik"},"TMT":{"iso":"TMT","format":"{amount} {symbol}","symbol":"T","offset":100,"name":"Manat turkm\u00e8ne"},"TND":{"iso":"TND","format":"{amount} {symbol}","symbol":"\u062f.\u062a.","offset":100,"name":"Dinar tunisien"},"TOP":{"iso":"TOP","format":"{amount} {symbol}","symbol":"T$","offset":100,"name":"Pa\u02bbanga du Tonga"},"TRY":{"iso":"TRY","format":"{amount} {symbol}","symbol":"TL","offset":100,"name":"Lire turque"},"TTD":{"iso":"TTD","format":"{amount} {symbol}","symbol":"TT$","offset":100,"name":"Dollar de Trinit\u00e9-et-Tobago"},"TWD":{"iso":"TWD","format":"{amount} {symbol}","symbol":"NT$","offset":1,"name":"Dollar de Taiwan"},"TZS":{"iso":"TZS","format":"{amount} {symbol}","symbol":"TSh","offset":100,"name":"Shilling tanzanien"},"UAH":{"iso":"UAH","format":"{amount} {symbol}","symbol":"\u0433\u0440\u043d.","offset":100,"name":"Hryvnia ukrainien"},"UGX":{"iso":"UGX","format":"{amount} {symbol}","symbol":"USh","offset":1,"name":"Shilling ougandais"},"USD":{"iso":"USD","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Dollar am\u00e9ricain"},"UYU":{"iso":"UYU","format":"{amount} {symbol}","symbol":"$U","offset":100,"name":"Peso uruguayen"},"UZS":{"iso":"UZS","format":"{amount} {symbol}","symbol":"\u0441\u045e\u043c","offset":100,"name":"Sum ouzbek"},"VEF":{"iso":"VEF","format":"{amount} {symbol}","symbol":"Bs","offset":100,"name":"Bolivar v\u00e9n\u00e9zu\u00e9lien"},"VND":{"iso":"VND","format":"{amount} {symbol}","symbol":"\u20ab","offset":1,"name":"Dong vietnamien"},"VUV":{"iso":"VUV","format":"{amount} {symbol}","symbol":"VT","offset":1,"name":"Vatu vanuatais"},"WST":{"iso":"WST","format":"{amount} {symbol}","symbol":"WS$","offset":100,"name":"Tala de Samoa"},"XAF":{"iso":"XAF","format":"{amount} {symbol}","symbol":"FCFA","offset":1,"name":"Franc d\u2019Afrique centrale"},"XCD":{"iso":"XCD","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Dollar des Cara\u00efbes orientales"},"XOF":{"iso":"XOF","format":"{amount} {symbol}","symbol":"FCFA","offset":1,"name":"Franc d\u2019Afrique de l\u2019Ouest"},"XPF":{"iso":"XPF","format":"{amount} {symbol}","symbol":"\u20a3","offset":1,"name":"Franc Pacifique"},"YER":{"iso":"YER","format":"{amount} {symbol}","symbol":"\u0631.\u064a.","offset":100,"name":"Rial y\u00e9m\u00e9nite"},"ZAR":{"iso":"ZAR","format":"{amount} {symbol}","symbol":"R","offset":100,"name":"Rand sud-africain"},"ZMW":{"iso":"ZMW","format":"{amount} {symbol}","symbol":"K","offset":100,"name":"Kwacha zambien"},"ZWL":{"iso":"ZWL","format":"{amount} {symbol}","symbol":"ZWL","offset":100,"name":"Dollar zimbabw\u00e9en"}},"dynamicAdsCurrenciesByCode":{"AED":{"iso":"AED","format":"{amount} {symbol}","symbol":"\u062f.\u0625.","offset":100,"name":"Dirham des \u00c9mirats arabes unis"},"AFN":{"iso":"AFN","format":"{amount} {symbol}","symbol":"\u060b","offset":100,"name":"Afghani d\u2019Afghanistan"},"ALL":{"iso":"ALL","format":"{amount} {symbol}","symbol":"Lek","offset":100,"name":"Lek albanais"},"AMD":{"iso":"AMD","format":"{amount} {symbol}","symbol":"\u0564\u0580.","offset":100,"name":"Dram arm\u00e9nien"},"ANG":{"iso":"ANG","format":"{amount} {symbol}","symbol":"ANG","offset":100,"name":"Florin des Antilles n\u00e9erlandaises"},"AOA":{"iso":"AOA","format":"{amount} {symbol}","symbol":"AOA","offset":100,"name":"Kwanza d\u2019Angola"},"ARS":{"iso":"ARS","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Peso argentin"},"AUD":{"iso":"AUD","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Dollar australien"},"AWG":{"iso":"AWG","format":"{amount} {symbol}","symbol":"Afl.","offset":100,"name":"Florin arubais"},"AZN":{"iso":"AZN","format":"{amount} {symbol}","symbol":"\u043c\u0430\u043d.","offset":100,"name":"Manat azerba\u00efdjanais"},"BAM":{"iso":"BAM","format":"{amount} {symbol}","symbol":"BAM","offset":100,"name":"Mark convertible de Bosnie-Herz\u00e9govine"},"BBD":{"iso":"BBD","format":"{amount} {symbol}","symbol":"Bds$","offset":100,"name":"Dollar barbadien"},"BDT":{"iso":"BDT","format":"{amount} {symbol}","symbol":"\u09f3","offset":100,"name":"Taka du Bangladesh"},"BGN":{"iso":"BGN","format":"{amount} {symbol}","symbol":"\u043b\u0432.","offset":100,"name":"Lev bulgare"},"BHD":{"iso":"BHD","format":"{amount} {symbol}","symbol":"\u062f.\u0628.","offset":100,"name":"Dinar bahre\u00efni"},"BIF":{"iso":"BIF","format":"{amount} {symbol}","symbol":"FBu","offset":1,"name":"Franc burundais"},"BMD":{"iso":"BMD","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Dollar des Bermudes"},"BND":{"iso":"BND","format":"{amount} {symbol}","symbol":"B$","offset":100,"name":"Dollar de Brunei"},"BOB":{"iso":"BOB","format":"{amount} {symbol}","symbol":"Bs.","offset":100,"name":"Boliviano bolivien"},"BRL":{"iso":"BRL","format":"{amount} {symbol}","symbol":"R$","offset":100,"name":"Real br\u00e9silien"},"BSD":{"iso":"BSD","format":"{amount} {symbol}","symbol":"B$","offset":100,"name":"Dollar des Bahamas"},"BTN":{"iso":"BTN","format":"{amount} {symbol}","symbol":"Nu.","offset":100,"name":"Ngultrum bhoutanais"},"BWP":{"iso":"BWP","format":"{amount} {symbol}","symbol":"P","offset":100,"name":"Pula botswanais"},"BYN":{"iso":"BYN","format":"{amount} {symbol}","symbol":"Br","offset":100,"name":"Rouble bi\u00e9lorusse"},"BZD":{"iso":"BZD","format":"{amount} {symbol}","symbol":"BZ$","offset":100,"name":"Dollar de Belize"},"CAD":{"iso":"CAD","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Dollar canadien"},"CDF":{"iso":"CDF","format":"{amount} {symbol}","symbol":"FC","offset":100,"name":"Franc congolais"},"CHF":{"iso":"CHF","format":"{amount} {symbol}","symbol":"Fr.","offset":100,"name":"Franc suisse"},"CLP":{"iso":"CLP","format":"{amount} {symbol}","symbol":"$","offset":1,"name":"Peso chilien"},"CNY":{"iso":"CNY","format":"{amount} {symbol}","symbol":"\u00a5","offset":100,"name":"Yuan chinois"},"COP":{"iso":"COP","format":"{amount} {symbol}","symbol":"$","offset":1,"name":"Peso colombien"},"CRC":{"iso":"CRC","format":"{amount} {symbol}","symbol":"\u20a1","offset":1,"name":"Colon costaricain"},"CVE":{"iso":"CVE","format":"{amount} {symbol}","symbol":"$","offset":1,"name":"Escudo cap-verdien"},"CZK":{"iso":"CZK","format":"{amount} {symbol}","symbol":"K\u010d","offset":100,"name":"Couronne tch\u00e8que"},"DJF":{"iso":"DJF","format":"{amount} {symbol}","symbol":"Fdj","offset":1,"name":"Franc Djibouti"},"DKK":{"iso":"DKK","format":"{amount} {symbol}","symbol":"kr.","offset":100,"name":"Couronne danoise"},"DOP":{"iso":"DOP","format":"{amount} {symbol}","symbol":"RD$","offset":100,"name":"Peso dominicain"},"DZD":{"iso":"DZD","format":"{amount} {symbol}","symbol":"DA","offset":100,"name":"Dinar alg\u00e9rien"},"EGP":{"iso":"EGP","format":"{amount} {symbol}","symbol":"\u062c.\u0645.","offset":100,"name":"Livre \u00e9gyptienne"},"ERN":{"iso":"ERN","format":"{amount} {symbol}","symbol":"Nfk","offset":100,"name":"Nakfa \u00e9rythr\u00e9en"},"ETB":{"iso":"ETB","format":"{amount} {symbol}","symbol":"Br","offset":100,"name":"Birr \u00e9thiopien"},"EUR":{"iso":"EUR","format":"{amount} {symbol}","symbol":"\u20ac","offset":100,"name":"Euro"},"FJD":{"iso":"FJD","format":"{amount} {symbol}","symbol":"FJ$","offset":100,"name":"Dollar fidjien"},"FKP":{"iso":"FKP","format":"{amount} {symbol}","symbol":"\u00a3","offset":100,"name":"Livre des \u00celes Malouines"},"GBP":{"iso":"GBP","format":"{amount} {symbol}","symbol":"\u00a3","offset":100,"name":"Livre sterling"},"GEL":{"iso":"GEL","format":"{amount} {symbol}","symbol":"\u20be","offset":100,"name":"Lari g\u00e9orgien"},"GHS":{"iso":"GHS","format":"{amount} {symbol}","symbol":"GHS","offset":100,"name":"C\u00e9di ghan\u00e9en"},"GIP":{"iso":"GIP","format":"{amount} {symbol}","symbol":"\u00a3","offset":100,"name":"Livre de Gibraltar"},"GMD":{"iso":"GMD","format":"{amount} {symbol}","symbol":"D","offset":100,"name":"Dalasi gambien"},"GNF":{"iso":"GNF","format":"{amount} {symbol}","symbol":"FG","offset":1,"name":"Franc guin\u00e9en"},"GTQ":{"iso":"GTQ","format":"{amount} {symbol}","symbol":"Q","offset":100,"name":"Quetzal guat\u00e9malt\u00e8que"},"GYD":{"iso":"GYD","format":"{amount} {symbol}","symbol":"G$","offset":100,"name":"Dollar guyanien"},"HKD":{"iso":"HKD","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Dollar de Hong Kong"},"HNL":{"iso":"HNL","format":"{amount} {symbol}","symbol":"L.","offset":100,"name":"Lempira hondurien"},"HRK":{"iso":"HRK","format":"{amount} {symbol}","symbol":"kn","offset":100,"name":"Kuna croate"},"HTG":{"iso":"HTG","format":"{amount} {symbol}","symbol":"G","offset":100,"name":"Gourde ha\u00eftienne"},"HUF":{"iso":"HUF","format":"{amount} {symbol}","symbol":"Ft","offset":1,"name":"Forint hongrois"},"IDR":{"iso":"IDR","format":"{amount} {symbol}","symbol":"Rp","offset":1,"name":"Roupie indon\u00e9sienne"},"ILS":{"iso":"ILS","format":"{amount} {symbol}","symbol":"\u20aa","offset":100,"name":"Nouveau Shekel israelien"},"INR":{"iso":"INR","format":"{amount} {symbol}","symbol":"\u20b9","offset":100,"name":"Roupie indienne"},"IQD":{"iso":"IQD","format":"{amount} {symbol}","symbol":"\u062f.\u0639.","offset":100,"name":"Dinar iraquien"},"ISK":{"iso":"ISK","format":"{amount} {symbol}","symbol":"kr.","offset":1,"name":"Couronne islandaise"},"JMD":{"iso":"JMD","format":"{amount} {symbol}","symbol":"J$","offset":100,"name":"Dollar jama\u00efcain"},"JOD":{"iso":"JOD","format":"{amount} {symbol}","symbol":"\u062f.\u0627.","offset":100,"name":"Dinar jordanien"},"JPY":{"iso":"JPY","format":"{amount} {symbol}","symbol":"\u00a5","offset":1,"name":"Yen japonais"},"KES":{"iso":"KES","format":"{amount} {symbol}","symbol":"KSh","offset":100,"name":"Shilling kenyan"},"KGS":{"iso":"KGS","format":"{amount} {symbol}","symbol":"\u0441\u043e\u043c","offset":100,"name":"Som kirghize"},"KHR":{"iso":"KHR","format":"{amount} {symbol}","symbol":"\u17db","offset":100,"name":"Riel cambodgien"},"KMF":{"iso":"KMF","format":"{amount} {symbol}","symbol":"CF","offset":1,"name":"Franc comorien"},"KRW":{"iso":"KRW","format":"{amount} {symbol}","symbol":"\u20a9","offset":1,"name":"Won cor\u00e9en"},"KWD":{"iso":"KWD","format":"{amount} {symbol}","symbol":"\u062f.\u0643.","offset":100,"name":"Dinar kowe\u00eftien"},"KYD":{"iso":"KYD","format":"{amount} {symbol}","symbol":"CI$","offset":100,"name":"Dollar des \u00eeles Ca\u00efmans"},"KZT":{"iso":"KZT","format":"{amount} {symbol}","symbol":"\u0422","offset":100,"name":"Tenge kazakh"},"LAK":{"iso":"LAK","format":"{amount} {symbol}","symbol":"\u20ad","offset":100,"name":"Kip laotien"},"LBP":{"iso":"LBP","format":"{amount} {symbol}","symbol":"\u0644.\u0644.","offset":100,"name":"Livre libanaise"},"LKR":{"iso":"LKR","format":"{amount} {symbol}","symbol":"LKR","offset":100,"name":"Roupie srilankaise"},"LRD":{"iso":"LRD","format":"{amount} {symbol}","symbol":"L$","offset":100,"name":"Dollar lib\u00e9rien"},"LSL":{"iso":"LSL","format":"{amount} {symbol}","symbol":"L","offset":100,"name":"Loti du Lesotho"},"LYD":{"iso":"LYD","format":"{amount} {symbol}","symbol":"\u062f.\u0644.","offset":100,"name":"Dinar libyen"},"MAD":{"iso":"MAD","format":"{amount} {symbol}","symbol":"\u062f.\u0645.","offset":100,"name":"Dirham marocain"},"MDL":{"iso":"MDL","format":"{amount} {symbol}","symbol":"lei","offset":100,"name":"Leu moldave"},"MGA":{"iso":"MGA","format":"{amount} {symbol}","symbol":"Ar","offset":5,"name":"Ariary malgache"},"MKD":{"iso":"MKD","format":"{amount} {symbol}","symbol":"\u0434\u0435\u043d.","offset":100,"name":"Dinar mac\u00e9donien"},"MMK":{"iso":"MMK","format":"{amount} {symbol}","symbol":"Ks","offset":100,"name":"Kyat de Myanmar"},"MNT":{"iso":"MNT","format":"{amount} {symbol}","symbol":"\u20ae","offset":100,"name":"Tugrik mongolien"},"MOP":{"iso":"MOP","format":"{amount} {symbol}","symbol":"MOP","offset":100,"name":"Pataca de Macau"},"MRO":{"iso":"MRO","format":"{amount} {symbol}","symbol":"UM","offset":5,"name":"Ouguiya mauritanien"},"MUR":{"iso":"MUR","format":"{amount} {symbol}","symbol":"MUR","offset":100,"name":"Roupie mauricienne"},"MVR":{"iso":"MVR","format":"{amount} {symbol}","symbol":"\u0783.","offset":100,"name":"Rufiyaa maldivienne"},"MWK":{"iso":"MWK","format":"{amount} {symbol}","symbol":"MK","offset":100,"name":"Kwacha malawien"},"MXN":{"iso":"MXN","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Peso mexicain"},"MYR":{"iso":"MYR","format":"{amount} {symbol}","symbol":"RM","offset":100,"name":"Ringgit malaisien"},"MZN":{"iso":"MZN","format":"{amount} {symbol}","symbol":"MT","offset":100,"name":"Metical du Mozambique"},"NAD":{"iso":"NAD","format":"{amount} {symbol}","symbol":"N$","offset":100,"name":"Dollar namibien"},"NGN":{"iso":"NGN","format":"{amount} {symbol}","symbol":"\u20a6","offset":100,"name":"Na\u00efra nig\u00e9rian"},"NIO":{"iso":"NIO","format":"{amount} {symbol}","symbol":"C$","offset":100,"name":"C\u00f3rdoba nicaraguayen"},"NOK":{"iso":"NOK","format":"{amount} {symbol}","symbol":"kr","offset":100,"name":"Couronne norv\u00e9gienne"},"NPR":{"iso":"NPR","format":"{amount} {symbol}","symbol":"\u0930\u0942","offset":100,"name":"Roupie n\u00e9palaise"},"NZD":{"iso":"NZD","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Dollar n\u00e9o-z\u00e9landais"},"OMR":{"iso":"OMR","format":"{amount} {symbol}","symbol":"\u0631.\u0639.","offset":100,"name":"Rial omanais"},"PAB":{"iso":"PAB","format":"{amount} {symbol}","symbol":"B\/.","offset":100,"name":"Balboa du Panama"},"PEN":{"iso":"PEN","format":"{amount} {symbol}","symbol":"S\/","offset":100,"name":"Nuevo Sol p\u00e9ruvien"},"PGK":{"iso":"PGK","format":"{amount} {symbol}","symbol":"K","offset":100,"name":"Kina de Papouasie-Nouvelle-Guin\u00e9e"},"PHP":{"iso":"PHP","format":"{amount} {symbol}","symbol":"\u20b1","offset":100,"name":"Peso philippin"},"PKR":{"iso":"PKR","format":"{amount} {symbol}","symbol":"Rs","offset":100,"name":"Roupie pakistanaise"},"PLN":{"iso":"PLN","format":"{amount} {symbol}","symbol":"z\u0142","offset":100,"name":"Zloty polonais"},"PYG":{"iso":"PYG","format":"{amount} {symbol}","symbol":"\u20b2","offset":1,"name":"Guarani paraguayen"},"QAR":{"iso":"QAR","format":"{amount} {symbol}","symbol":"\u0631.\u0642.","offset":100,"name":"Riyal qatari"},"RON":{"iso":"RON","format":"{amount} {symbol}","symbol":"lei","offset":100,"name":"Leu roumain"},"RSD":{"iso":"RSD","format":"{amount} {symbol}","symbol":"RSD","offset":100,"name":"Dinar serbe"},"RUB":{"iso":"RUB","format":"{amount} {symbol}","symbol":"p.","offset":100,"name":"Rouble russe"},"RWF":{"iso":"RWF","format":"{amount} {symbol}","symbol":"FRw","offset":1,"name":"Franc rwandais"},"SAR":{"iso":"SAR","format":"{amount} {symbol}","symbol":"\u0631.\u0633.","offset":100,"name":"Riyal d\u2019Arabie Saoudite"},"SBD":{"iso":"SBD","format":"{amount} {symbol}","symbol":"SI$","offset":100,"name":"Dollar des \u00celes Salomon"},"SCR":{"iso":"SCR","format":"{amount} {symbol}","symbol":"SR","offset":100,"name":"Roupie des Seychelles"},"SEK":{"iso":"SEK","format":"{amount} {symbol}","symbol":"kr","offset":100,"name":"Couronne su\u00e9doise"},"SGD":{"iso":"SGD","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Dollar de Singapour"},"SHP":{"iso":"SHP","format":"{amount} {symbol}","symbol":"\u00a3","offset":100,"name":"Livre de Sainte-H\u00e9l\u00e8ne"},"SLL":{"iso":"SLL","format":"{amount} {symbol}","symbol":"Le","offset":100,"name":"Leone de Sierra Leone"},"SOS":{"iso":"SOS","format":"{amount} {symbol}","symbol":"S","offset":100,"name":"Shilling somalien"},"SRD":{"iso":"SRD","format":"{amount} {symbol}","symbol":"SRD","offset":100,"name":"Dollar de Surinam"},"SSP":{"iso":"SSP","format":"{amount} {symbol}","symbol":"\u00a3","offset":100,"name":"livre sud-soudanaise"},"STD":{"iso":"STD","format":"{amount} {symbol}","symbol":"Db","offset":100,"name":"Dobra de Sao Tom\u00e9"},"SVC":{"iso":"SVC","format":"{amount} {symbol}","symbol":"\u20a1","offset":100,"name":"Colon salvadorien"},"SZL":{"iso":"SZL","format":"{amount} {symbol}","symbol":"L","offset":100,"name":"Lilangeni du Swaziland"},"THB":{"iso":"THB","format":"{amount} {symbol}","symbol":"\u0e3f","offset":100,"name":"Baht tha\u00eflandais"},"TJS":{"iso":"TJS","format":"{amount} {symbol}","symbol":"\u0441.","offset":100,"name":"Somoni tadjik"},"TMT":{"iso":"TMT","format":"{amount} {symbol}","symbol":"T","offset":100,"name":"Manat turkm\u00e8ne"},"TND":{"iso":"TND","format":"{amount} {symbol}","symbol":"\u062f.\u062a.","offset":100,"name":"Dinar tunisien"},"TOP":{"iso":"TOP","format":"{amount} {symbol}","symbol":"T$","offset":100,"name":"Pa\u02bbanga du Tonga"},"TRY":{"iso":"TRY","format":"{amount} {symbol}","symbol":"TL","offset":100,"name":"Lire turque"},"TTD":{"iso":"TTD","format":"{amount} {symbol}","symbol":"TT$","offset":100,"name":"Dollar de Trinit\u00e9-et-Tobago"},"TWD":{"iso":"TWD","format":"{amount} {symbol}","symbol":"NT$","offset":1,"name":"Dollar de Taiwan"},"TZS":{"iso":"TZS","format":"{amount} {symbol}","symbol":"TSh","offset":100,"name":"Shilling tanzanien"},"UAH":{"iso":"UAH","format":"{amount} {symbol}","symbol":"\u0433\u0440\u043d.","offset":100,"name":"Hryvnia ukrainien"},"UGX":{"iso":"UGX","format":"{amount} {symbol}","symbol":"USh","offset":1,"name":"Shilling ougandais"},"USD":{"iso":"USD","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Dollar am\u00e9ricain"},"UYU":{"iso":"UYU","format":"{amount} {symbol}","symbol":"$U","offset":100,"name":"Peso uruguayen"},"UZS":{"iso":"UZS","format":"{amount} {symbol}","symbol":"\u0441\u045e\u043c","offset":100,"name":"Sum ouzbek"},"VEF":{"iso":"VEF","format":"{amount} {symbol}","symbol":"Bs","offset":100,"name":"Bolivar v\u00e9n\u00e9zu\u00e9lien"},"VND":{"iso":"VND","format":"{amount} {symbol}","symbol":"\u20ab","offset":1,"name":"Dong vietnamien"},"VUV":{"iso":"VUV","format":"{amount} {symbol}","symbol":"VT","offset":1,"name":"Vatu vanuatais"},"WST":{"iso":"WST","format":"{amount} {symbol}","symbol":"WS$","offset":100,"name":"Tala de Samoa"},"XAF":{"iso":"XAF","format":"{amount} {symbol}","symbol":"FCFA","offset":1,"name":"Franc d\u2019Afrique centrale"},"XCD":{"iso":"XCD","format":"{amount} {symbol}","symbol":"$","offset":100,"name":"Dollar des Cara\u00efbes orientales"},"XOF":{"iso":"XOF","format":"{amount} {symbol}","symbol":"FCFA","offset":1,"name":"Franc d\u2019Afrique de l\u2019Ouest"},"XPF":{"iso":"XPF","format":"{amount} {symbol}","symbol":"\u20a3","offset":1,"name":"Franc Pacifique"},"YER":{"iso":"YER","format":"{amount} {symbol}","symbol":"\u0631.\u064a.","offset":100,"name":"Rial y\u00e9m\u00e9nite"},"ZAR":{"iso":"ZAR","format":"{amount} {symbol}","symbol":"R","offset":100,"name":"Rand sud-africain"},"ZMW":{"iso":"ZMW","format":"{amount} {symbol}","symbol":"K","offset":100,"name":"Kwacha zambien"},"ZWL":{"iso":"ZWL","format":"{amount} {symbol}","symbol":"ZWL","offset":100,"name":"Dollar zimbabw\u00e9en"}}},832],["CustomCallToActionTypes",[],{"TYPES":{"NONE":"","BOOK_NOW":"BOOK_NOW","REQUEST_QUOTE":"REQUEST_QUOTE","MAKE_RESERVATION":"MAKE_RESERVATION","CALL_NOW":"CALL_NOW","CHARITY_DONATE":"CHARITY_DONATE","CONTACT_US":"CONTACT_US","DONATE_NOW":"DONATE_NOW","MESSAGE":"MESSAGE","OPEN_APP":"OPEN_APP","PLAY_NOW":"PLAY_NOW","SHOP_NOW":"SHOP_NOW","SIGN_UP":"SIGN_UP","WATCH_NOW":"WATCH_NOW","GET_OFFER":"GET_OFFER","GET_OFFER_VIEW":"GET_OFFER_VIEW","BOOK_APPOINTMENT":"BOOK_APPOINTMENT","LISTEN":"LISTEN","EMAIL":"EMAIL","LEARN_MORE":"LEARN_MORE","REQUEST_APPOINTMENT":"REQUEST_APPOINTMENT","READ_ARTICLES":"READ_ARTICLES","VIDEO_CALL":"VIDEO_CALL","ORDER_NOW":"ORDER_NOW","GET_DIRECTIONS":"GET_DIRECTIONS","BUY_TICKETS":"BUY_TICKETS","WHATSAPP_MESSAGE":"WHATSAPP_MESSAGE","PLAY_MUSIC":"PLAY_MUSIC","VISIT_GROUP":"VISIT_GROUP","GET_EVENT_TICKETS":"GET_EVENT_TICKETS","SHOP_ON_FACEBOOK":"SHOP_ON_FACEBOOK","LOCAL_DEV_PLATFORM":"LOCAL_DEV_PLATFORM","INTERESTED":"INTERESTED","WOODHENGE_SUPPORT":"WOODHENGE_SUPPORT"},"MOBILE_ONLY_DESTINATION_TYPES":["APP_LINK","APP_DEEPLINK","FACEBOOK_APP","CANVAS"],"LABELS":{"BOOK_NOW":"R\u00e9server","REQUEST_QUOTE":"Obtenir un devis","MAKE_RESERVATION":"R\u00e9server","CALL_NOW":"Appeler","CHARITY_DONATE":"Faire un don","CONTACT_US":"Nous contacter","DONATE_NOW":"Faire un don","MESSAGE":"Envoyer un message","OPEN_APP":"Utiliser l\u2019application","PLAY_NOW":"Jouer \u00e0 ce jeu","SHOP_NOW":"Acheter","SIGN_UP":"S\u2019inscrire","WATCH_NOW":"Regarder la vid\u00e9o","GET_OFFER":"Voir les offres","GET_OFFER_VIEW":"Voir les offres","BOOK_APPOINTMENT":"Prendre rendez-vous","LISTEN":"\u00c9couter","EMAIL":"Envoyer un e-mail","LEARN_MORE":"En savoir plus","REQUEST_APPOINTMENT":"Demander un rendez-vous","READ_ARTICLES":"Lire les articles","VIDEO_CALL":"Salle de vid\u00e9oconf\u00e9rence","ORDER_NOW":"Commencer la commande","GET_DIRECTIONS":"Obtenir un itin\u00e9raire","BUY_TICKETS":"Obtenir les horaires","WHATSAPP_MESSAGE":"WhatsApp","PLAY_MUSIC":"\u00c9couter de la musique","VISIT_GROUP":"Acc\u00e9der au groupe","GET_EVENT_TICKETS":"Obtenir des billets","SHOP_ON_FACEBOOK":"Acheter (Page boutique)","LOCAL_DEV_PLATFORM":"R\u00e9server maintenant","INTERESTED":"Int\u00e9ress\u00e9(e)","WOODHENGE_SUPPORT":"Devenir un soutien"},"ICONS":{"BOOK_NOW":{"sprited":true,"spriteCssClass":"sx_07b81f","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"REQUEST_QUOTE":{"sprited":true,"spriteCssClass":"sx_6c20d8","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"MAKE_RESERVATION":{"sprited":true,"spriteCssClass":"sx_07b81f","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"CALL_NOW":{"sprited":true,"spriteCssClass":"sx_c933e9","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"CHARITY_DONATE":{"sprited":true,"spriteCssClass":"sx_4b5ef0","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"CONTACT_US":{"sprited":true,"spriteCssClass":"sx_369f32","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"DONATE_NOW":{"sprited":true,"spriteCssClass":"sx_4b5ef0","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"MESSAGE":{"sprited":true,"spriteCssClass":"sx_1e5f3b","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"OPEN_APP":{"sprited":true,"spriteCssClass":"sx_707537","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"PLAY_NOW":{"sprited":true,"spriteCssClass":"sx_a3c254","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"SHOP_NOW":{"sprited":true,"spriteCssClass":"sx_9629a6","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"SIGN_UP":{"sprited":true,"spriteCssClass":"sx_c08bd7","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"WATCH_NOW":{"sprited":true,"spriteCssClass":"sx_6c6400","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"GET_OFFER":{"sprited":true,"spriteCssClass":"sx_ec548d","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"GET_OFFER_VIEW":{"sprited":true,"spriteCssClass":"sx_ec548d","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"BOOK_APPOINTMENT":{"sprited":true,"spriteCssClass":"sx_7ba313","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"LISTEN":{"sprited":true,"spriteCssClass":"sx_12f69f","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"EMAIL":{"sprited":true,"spriteCssClass":"sx_369f32","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"LEARN_MORE":{"sprited":true,"spriteCssClass":"sx_e3dc7e","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"REQUEST_APPOINTMENT":{"sprited":true,"spriteCssClass":"sx_07b81f","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"READ_ARTICLES":{"sprited":true,"spriteCssClass":"sx_7ba313","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"VIDEO_CALL":{"sprited":true,"spriteCssClass":"sx_fe8d3d","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"ORDER_NOW":{"sprited":true,"spriteCssClass":"sx_b77e27","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"GET_DIRECTIONS":{"sprited":true,"spriteCssClass":"sx_dce9cb","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"BUY_TICKETS":{"sprited":true,"spriteCssClass":"sx_ec548d","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"WHATSAPP_MESSAGE":{"sprited":true,"spriteCssClass":"sx_36c9f1","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"PLAY_MUSIC":{"sprited":true,"spriteCssClass":"sx_6c6400","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"VISIT_GROUP":{"sprited":true,"spriteCssClass":"sx_e79700","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"GET_EVENT_TICKETS":{"sprited":true,"spriteCssClass":"sx_ec548d","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"SHOP_ON_FACEBOOK":{"sprited":true,"spriteCssClass":"sx_9629a6","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"LOCAL_DEV_PLATFORM":{"sprited":true,"spriteCssClass":"sx_07b81f","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"INTERESTED":{"sprited":true,"spriteCssClass":"sx_ade249","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"WOODHENGE_SUPPORT":{"sprited":true,"spriteCssClass":"sx_5802ad","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"}},"MOBILE_ICONS":{"BOOK_NOW":{"sprited":true,"spriteCssClass":"sx_bbdeba","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"REQUEST_QUOTE":{"sprited":true,"spriteCssClass":"sx_6e9c8e","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"MAKE_RESERVATION":{"sprited":true,"spriteCssClass":"sx_bbdeba","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"CALL_NOW":{"sprited":true,"spriteCssClass":"sx_5b6922","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"CHARITY_DONATE":{"sprited":true,"spriteCssClass":"sx_e51ba9","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"CONTACT_US":{"sprited":true,"spriteCssClass":"sx_81e0d3","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"DONATE_NOW":{"sprited":true,"spriteCssClass":"sx_e51ba9","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"MESSAGE":{"sprited":true,"spriteCssClass":"sx_7f5eb7","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"OPEN_APP":{"sprited":true,"spriteCssClass":"sx_ac408a","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"PLAY_NOW":{"sprited":true,"spriteCssClass":"sx_cf5312","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"SHOP_NOW":{"sprited":true,"spriteCssClass":"sx_d5db0d","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"SIGN_UP":{"sprited":true,"spriteCssClass":"sx_0768c7","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"WATCH_NOW":{"sprited":true,"spriteCssClass":"sx_accbd1","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"GET_OFFER":{"sprited":true,"spriteCssClass":"sx_868e75","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"GET_OFFER_VIEW":{"sprited":true,"spriteCssClass":"sx_868e75","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"BOOK_APPOINTMENT":{"sprited":true,"spriteCssClass":"sx_03bdc7","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"LISTEN":{"sprited":true,"spriteCssClass":"sx_640eb3","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"EMAIL":{"sprited":true,"spriteCssClass":"sx_81e0d3","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"LEARN_MORE":{"sprited":true,"spriteCssClass":"sx_b73555","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"REQUEST_APPOINTMENT":{"sprited":true,"spriteCssClass":"sx_bbdeba","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"READ_ARTICLES":{"sprited":true,"spriteCssClass":"sx_03bdc7","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"VIDEO_CALL":{"sprited":true,"spriteCssClass":"sx_f7ca11","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"ORDER_NOW":{"sprited":true,"spriteCssClass":"sx_22707a","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"GET_DIRECTIONS":{"sprited":true,"spriteCssClass":"sx_af35f5","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"BUY_TICKETS":{"sprited":true,"spriteCssClass":"sx_868e75","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"WHATSAPP_MESSAGE":{"sprited":true,"spriteCssClass":"sx_71d4f4","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"PLAY_MUSIC":{"sprited":true,"spriteCssClass":"sx_accbd1","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"VISIT_GROUP":{"sprited":true,"spriteCssClass":"sx_17ba91","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"GET_EVENT_TICKETS":{"sprited":true,"spriteCssClass":"sx_868e75","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"SHOP_ON_FACEBOOK":{"sprited":true,"spriteCssClass":"sx_d5db0d","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"LOCAL_DEV_PLATFORM":{"sprited":true,"spriteCssClass":"sx_bbdeba","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"INTERESTED":{"sprited":true,"spriteCssClass":"sx_916018","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"WOODHENGE_SUPPORT":{"sprited":true,"spriteCssClass":"sx_628a50","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"}}},710],["DateFormatConfig",[],{"numericDateOrder":["d","m","y"],"numericDateSeparator":"\/","shortDayNames":["lun","mar","mer","jeu","ven","sam","dim"],"timeSeparator":":","weekStart":0,"formats":{"D":"D","D g:ia":"D H:i","D M d":"l j F","D M d, Y":"l j F Y","D M j":"l j F","D M j, g:ia":"l j F H:i","D M j, y":"l j F Y","D M j, Y g:ia":"l j F Y H:i","D, M j, Y":"l j F Y","F d":"j F","F d, Y":"j F Y","F g":"j F","F j":"j F","F j, Y":"j F Y","F j, Y \u0040 g:i A":"j F Y H:i","F j, Y g:i a":"j F Y H:i","F jS":"j F","F jS, g:ia":"j F H:i","F jS, Y":"j F Y","F Y":"F Y","g A":"H","g:i":"H:i","g:i A":"H:i","g:i a":"H:i","g:iA":"H:i","g:ia":"H:i","g:ia F jS, Y":"j F Y H:i","g:iA l, F jS":"l j F Y H:i","g:ia M j":"j F H:i","g:ia M jS":"j F H:i","g:ia, F jS":"j F H:i","g:iA, l M jS":"l j F Y H:i","g:sa":"H:i","H:I - M d, Y":"j F Y H:i","h:i a":"H:i","h:m:s m\/d\/Y":"d\/m\/Y H:i:s","j":"j","l F d, Y":"l j F Y","l g:ia":"l H:i","l, F d, Y":"l j F Y","l, F j":"l j F","l, F j, Y":"l j F Y","l, F jS":"l j F","l, F jS, g:ia":"l j F Y H:i","l, M j":"l j F","l, M j, Y":"l j F Y","l, M j, Y g:ia":"l j F Y H:i","M d":"j F","M d, Y":"j F Y","M d, Y g:ia":"j F Y H:i","M d, Y ga":"j F Y H","M j":"j F","M j, Y":"j F Y","M j, Y g:i A":"j F Y H:i","M j, Y g:ia":"j F Y H:i","M jS, g:ia":"j F H:i","M Y":"F Y","M y":"j F","m-d-y":"d\/m\/Y","M. d":"j F","M. d, Y":"j F Y","j F Y":"j F Y","m.d.y":"d\/m\/Y","m\/d":"d\/m","m\/d\/Y":"d\/m\/Y","m\/d\/y":"d\/m\/Y","m\/d\/Y g:ia":"d\/m\/Y H:i","m\/d\/y H:i:s":"d\/m\/Y H:i:s","m\/d\/Y h:m":"d\/m\/Y H:i:s","n":"d\/m","n\/j":"d\/m","n\/j, g:ia":"d\/m\/Y H:i","n\/j\/y":"d\/m\/Y","Y":"Y","Y-m-d":"d\/m\/Y","Y\/m\/d":"d\/m\/Y","y\/m\/d":"d\/m\/Y"},"ordinalSuffixes":{"1":"er","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":"er"}},165],["LocaleInitialData",[],{"locale":"fr_FR","language":"Fran\u00e7ais (France)"},273],["PECurrencyConfig",[],{"currency_map_for_render":{"AED":{"format":"{amount} {symbol}","symbol":"\u062f.\u0625.","offset":100,"screen_name":"Dirham des \u00c9mirats arabes unis"},"AFN":{"format":"{symbol}{amount}","symbol":"\u060b","offset":100,"screen_name":"Afghani d\u2019Afghanistan"},"ALL":{"format":"{amount}{symbol}","symbol":"Lek","offset":100,"screen_name":"Lek albanais"},"AMD":{"format":"{amount} {symbol}","symbol":"\u0564\u0580.","offset":100,"screen_name":"Dram arm\u00e9nien"},"ANG":{"format":"{symbol}{amount}","symbol":"ANG","offset":100,"screen_name":"Florin des Antilles n\u00e9erlandaises"},"AOA":{"format":"{symbol}{amount}","symbol":"AOA","offset":100,"screen_name":"Kwanza d\u2019Angola"},"ARS":{"format":"{symbol} {amount}","symbol":"$","offset":100,"screen_name":"Peso argentin"},"AUD":{"format":"{symbol}{amount}","symbol":"$","offset":100,"screen_name":"Dollar australien"},"AWG":{"format":"{symbol}{amount}","symbol":"Afl.","offset":100,"screen_name":"Florin arubais"},"AZN":{"format":"{amount} {symbol}","symbol":"\u043c\u0430\u043d.","offset":100,"screen_name":"Manat azerba\u00efdjanais"},"BAM":{"format":"{symbol}{amount}","symbol":"BAM","offset":100,"screen_name":"Mark convertible de Bosnie-Herz\u00e9govine"},"BBD":{"format":"{symbol}{amount}","symbol":"Bds$","offset":100,"screen_name":"Dollar barbadien"},"BDT":{"format":"{symbol}{amount}","symbol":"\u09f3","offset":100,"screen_name":"Taka du Bangladesh"},"BGN":{"format":"{amount} {symbol}","symbol":"\u043b\u0432.","offset":100,"screen_name":"Lev bulgare"},"BHD":{"format":"{amount} {symbol}","symbol":"\u062f.\u0628.","offset":100,"screen_name":"Dinar bahre\u00efni"},"BIF":{"format":"{symbol}{amount}","symbol":"FBu","offset":1,"screen_name":"Franc burundais"},"BMD":{"format":"{symbol}{amount}","symbol":"$","offset":100,"screen_name":"Dollar des Bermudes"},"BND":{"format":"{symbol}{amount}","symbol":"B$","offset":100,"screen_name":"Dollar de Brunei"},"BOB":{"format":"{symbol} {amount}","symbol":"Bs.","offset":100,"screen_name":"Boliviano bolivien"},"BRL":{"format":"{symbol} {amount}","symbol":"R$","offset":100,"screen_name":"Real br\u00e9silien"},"BSD":{"format":"{symbol}{amount}","symbol":"B$","offset":100,"screen_name":"Dollar des Bahamas"},"BTN":{"format":"{symbol}{amount}","symbol":"Nu.","offset":100,"screen_name":"Ngultrum bhoutanais"},"BWP":{"format":"{symbol}{amount}","symbol":"P","offset":100,"screen_name":"Pula botswanais"},"BYN":{"format":"{amount} {symbol}","symbol":"Br","offset":100,"screen_name":"Rouble bi\u00e9lorusse"},"BZD":{"format":"{symbol}{amount}","symbol":"BZ$","offset":100,"screen_name":"Dollar de Belize"},"CAD":{"format":"{symbol}{amount}","symbol":"$","offset":100,"screen_name":"Dollar canadien"},"CDF":{"format":"{symbol}{amount}","symbol":"FC","offset":100,"screen_name":"Franc congolais"},"CHF":{"format":"{symbol} {amount}","symbol":"Fr.","offset":100,"screen_name":"Franc suisse"},"CLP":{"format":"{symbol} {amount}","symbol":"$","offset":1,"screen_name":"Peso chilien"},"CNY":{"format":"{symbol}{amount}","symbol":"\u00a5","offset":100,"screen_name":"Yuan chinois"},"COP":{"format":"{symbol} {amount}","symbol":"$","offset":1,"screen_name":"Peso colombien"},"CRC":{"format":"{symbol}{amount}","symbol":"\u20a1","offset":1,"screen_name":"Colon costaricain"},"CVE":{"format":"{symbol}{amount}","symbol":"$","offset":1,"screen_name":"Escudo cap-verdien"},"CZK":{"format":"{amount} {symbol}","symbol":"K\u010d","offset":100,"screen_name":"Couronne tch\u00e8que"},"DJF":{"format":"{symbol}{amount}","symbol":"Fdj","offset":1,"screen_name":"Franc Djibouti"},"DKK":{"format":"{amount} {symbol}","symbol":"kr.","offset":100,"screen_name":"Couronne danoise"},"DOP":{"format":"{symbol} {amount}","symbol":"RD$","offset":100,"screen_name":"Peso dominicain"},"DZD":{"format":"{amount} {symbol}","symbol":"DA","offset":100,"screen_name":"Dinar alg\u00e9rien"},"EGP":{"format":"{amount} {symbol}","symbol":"\u062c.\u0645.","offset":100,"screen_name":"Livre \u00e9gyptienne"},"ERN":{"format":"{symbol}{amount}","symbol":"Nfk","offset":100,"screen_name":"Nakfa \u00e9rythr\u00e9en"},"ETB":{"format":"{symbol}{amount}","symbol":"Br","offset":100,"screen_name":"Birr \u00e9thiopien"},"EUR":{"format":"{symbol} {amount}","symbol":"\u20ac","offset":100,"screen_name":"Euro"},"FBZ":{"format":"{symbol}{amount}","symbol":"C","offset":100,"screen_name":"cr\u00e9dits"},"FJD":{"format":"{symbol}{amount}","symbol":"FJ$","offset":100,"screen_name":"Dollar fidjien"},"FKP":{"format":"{symbol}{amount}","symbol":"\u00a3","offset":100,"screen_name":"Livre des \u00celes Malouines"},"GBP":{"format":"{symbol}{amount}","symbol":"\u00a3","offset":100,"screen_name":"Livre sterling"},"GEL":{"format":"{amount} {symbol}","symbol":"\u20be","offset":100,"screen_name":"Lari g\u00e9orgien"},"GHS":{"format":"{symbol}{amount}","symbol":"GHS","offset":100,"screen_name":"C\u00e9di ghan\u00e9en"},"GIP":{"format":"{symbol}{amount}","symbol":"\u00a3","offset":100,"screen_name":"Livre de Gibraltar"},"GMD":{"format":"{symbol}{amount}","symbol":"D","offset":100,"screen_name":"Dalasi gambien"},"GNF":{"format":"{symbol}{amount}","symbol":"FG","offset":1,"screen_name":"Franc guin\u00e9en"},"GTQ":{"format":"{symbol}{amount}","symbol":"Q","offset":100,"screen_name":"Quetzal guat\u00e9malt\u00e8que"},"GYD":{"format":"{symbol}{amount}","symbol":"G$","offset":100,"screen_name":"Dollar guyanien"},"HKD":{"format":"{symbol}{amount}","symbol":"$","offset":100,"screen_name":"Dollar de Hong Kong"},"HNL":{"format":"{symbol} {amount}","symbol":"L.","offset":100,"screen_name":"Lempira hondurien"},"HRK":{"format":"{amount} {symbol}","symbol":"kn","offset":100,"screen_name":"Kuna croate"},"HTG":{"format":"{symbol}{amount}","symbol":"G","offset":100,"screen_name":"Gourde ha\u00eftienne"},"HUF":{"format":"{amount} {symbol}","symbol":"Ft","offset":1,"screen_name":"Forint hongrois"},"IDR":{"format":"{symbol} {amount}","symbol":"Rp","offset":1,"screen_name":"Roupie indon\u00e9sienne"},"ILS":{"format":"{symbol}{amount}","symbol":"\u20aa","offset":100,"screen_name":"Nouveau Shekel israelien"},"INR":{"format":"{symbol} {amount}","symbol":"\u20b9","offset":100,"screen_name":"Roupie indienne"},"IQD":{"format":"{amount} {symbol}","symbol":"\u062f.\u0639.","offset":100,"screen_name":"Dinar iraquien"},"ISK":{"format":"{amount} {symbol}","symbol":"kr.","offset":1,"screen_name":"Couronne islandaise"},"JMD":{"format":"{symbol}{amount}","symbol":"J$","offset":100,"screen_name":"Dollar jama\u00efcain"},"JOD":{"format":"{amount} {symbol}","symbol":"\u062f.\u0627.","offset":100,"screen_name":"Dinar jordanien"},"JPY":{"format":"{symbol}{amount}","symbol":"\u00a5","offset":1,"screen_name":"Yen japonais"},"KES":{"format":"{symbol}{amount}","symbol":"KSh","offset":100,"screen_name":"Shilling kenyan"},"KGS":{"format":"{amount} {symbol}","symbol":"\u0441\u043e\u043c","offset":100,"screen_name":"Som kirghize"},"KHR":{"format":"{symbol}{amount}","symbol":"\u17db","offset":100,"screen_name":"Riel cambodgien"},"KMF":{"format":"{symbol}{amount}","symbol":"CF","offset":1,"screen_name":"Franc comorien"},"KRW":{"format":"{symbol}{amount}","symbol":"\u20a9","offset":1,"screen_name":"Won cor\u00e9en"},"KWD":{"format":"{amount} {symbol}","symbol":"\u062f.\u0643.","offset":100,"screen_name":"Dinar kowe\u00eftien"},"KYD":{"format":"{symbol}{amount}","symbol":"CI$","offset":100,"screen_name":"Dollar des \u00eeles Ca\u00efmans"},"KZT":{"format":"{symbol}{amount}","symbol":"\u0422","offset":100,"screen_name":"Tenge kazakh"},"LAK":{"format":"{symbol}{amount}","symbol":"\u20ad","offset":100,"screen_name":"Kip laotien"},"LBP":{"format":"{amount} {symbol}","symbol":"\u0644.\u0644.","offset":100,"screen_name":"Livre libanaise"},"LKR":{"format":"{symbol}{amount}","symbol":"LKR","offset":100,"screen_name":"Roupie srilankaise"},"LRD":{"format":"{symbol}{amount}","symbol":"L$","offset":100,"screen_name":"Dollar lib\u00e9rien"},"LSL":{"format":"{symbol}{amount}","symbol":"L","offset":100,"screen_name":"Loti du Lesotho"},"LTL":{"format":"{amount} {symbol}","symbol":"Lt","offset":100,"screen_name":"Litas lituanien"},"LVL":{"format":"{symbol} {amount}","symbol":"Ls","offset":100,"screen_name":"Lats letton"},"LYD":{"format":"{amount} {symbol}","symbol":"\u062f.\u0644.","offset":100,"screen_name":"Dinar libyen"},"MAD":{"format":"{amount} {symbol}","symbol":"\u062f.\u0645.","offset":100,"screen_name":"Dirham marocain"},"MDL":{"format":"{symbol}{amount}","symbol":"lei","offset":100,"screen_name":"Leu moldave"},"MGA":{"format":"{symbol}{amount}","symbol":"Ar","offset":5,"screen_name":"Ariary malgache"},"MKD":{"format":"{amount} {symbol}","symbol":"\u0434\u0435\u043d.","offset":100,"screen_name":"Dinar mac\u00e9donien"},"MMK":{"format":"{symbol}{amount}","symbol":"Ks","offset":100,"screen_name":"Kyat de Myanmar"},"MNT":{"format":"{amount}{symbol}","symbol":"\u20ae","offset":100,"screen_name":"Tugrik mongolien"},"MOP":{"format":"{symbol}{amount}","symbol":"MOP","offset":100,"screen_name":"Pataca de Macau"},"MRO":{"format":"{symbol}{amount}","symbol":"UM","offset":5,"screen_name":"Ouguiya mauritanien"},"MUR":{"format":"{symbol}{amount}","symbol":"MUR","offset":100,"screen_name":"Roupie mauricienne"},"MVR":{"format":"{symbol}{amount}","symbol":"\u0783.","offset":100,"screen_name":"Rufiyaa maldivienne"},"MWK":{"format":"{symbol}{amount}","symbol":"MK","offset":100,"screen_name":"Kwacha malawien"},"MXN":{"format":"{symbol}{amount}","symbol":"$","offset":100,"screen_name":"Peso mexicain"},"MYR":{"format":"{symbol}{amount}","symbol":"RM","offset":100,"screen_name":"Ringgit malaisien"},"MZN":{"format":"{symbol}{amount}","symbol":"MT","offset":100,"screen_name":"Metical du Mozambique"},"NAD":{"format":"{symbol}{amount}","symbol":"N$","offset":100,"screen_name":"Dollar namibien"},"NGN":{"format":"{symbol}{amount}","symbol":"\u20a6","offset":100,"screen_name":"Na\u00efra nig\u00e9rian"},"NIO":{"format":"{symbol} {amount}","symbol":"C$","offset":100,"screen_name":"C\u00f3rdoba nicaraguayen"},"NOK":{"format":"{symbol} {amount}","symbol":"kr","offset":100,"screen_name":"Couronne norv\u00e9gienne"},"NPR":{"format":"{symbol}{amount}","symbol":"\u0930\u0942","offset":100,"screen_name":"Roupie n\u00e9palaise"},"NZD":{"format":"{symbol}{amount}","symbol":"$","offset":100,"screen_name":"Dollar n\u00e9o-z\u00e9landais"},"OMR":{"format":"{amount} {symbol}","symbol":"\u0631.\u0639.","offset":100,"screen_name":"Rial omanais"},"PAB":{"format":"{symbol} {amount}","symbol":"B\/.","offset":100,"screen_name":"Balboa du Panama"},"PEN":{"format":"{symbol} {amount}","symbol":"S\/","offset":100,"screen_name":"Nuevo Sol p\u00e9ruvien"},"PGK":{"format":"{symbol}{amount}","symbol":"K","offset":100,"screen_name":"Kina de Papouasie-Nouvelle-Guin\u00e9e"},"PHP":{"format":"{symbol}{amount}","symbol":"\u20b1","offset":100,"screen_name":"Peso philippin"},"PKR":{"format":"{symbol}{amount}","symbol":"Rs","offset":100,"screen_name":"Roupie pakistanaise"},"PLN":{"format":"{amount} {symbol}","symbol":"z\u0142","offset":100,"screen_name":"Zloty polonais"},"PYG":{"format":"{symbol} {amount}","symbol":"\u20b2","offset":1,"screen_name":"Guarani paraguayen"},"QAR":{"format":"{amount} {symbol}","symbol":"\u0631.\u0642.","offset":100,"screen_name":"Riyal qatari"},"RON":{"format":"{amount} {symbol}","symbol":"lei","offset":100,"screen_name":"Leu roumain"},"RSD":{"format":"{symbol}{amount}","symbol":"RSD","offset":100,"screen_name":"Dinar serbe"},"RUB":{"format":"{amount} {symbol}","symbol":"p.","offset":100,"screen_name":"Rouble russe"},"RWF":{"format":"{symbol}{amount}","symbol":"FRw","offset":1,"screen_name":"Franc rwandais"},"SAR":{"format":"{amount} {symbol}","symbol":"\u0631.\u0633.","offset":100,"screen_name":"Riyal d\u2019Arabie Saoudite"},"SBD":{"format":"{symbol}{amount}","symbol":"SI$","offset":100,"screen_name":"Dollar des \u00celes Salomon"},"SCR":{"format":"{symbol}{amount}","symbol":"SR","offset":100,"screen_name":"Roupie des Seychelles"},"SEK":{"format":"{amount} {symbol}","symbol":"kr","offset":100,"screen_name":"Couronne su\u00e9doise"},"SGD":{"format":"{symbol}{amount}","symbol":"$","offset":100,"screen_name":"Dollar de Singapour"},"SHP":{"format":"{symbol}{amount}","symbol":"\u00a3","offset":100,"screen_name":"Livre de Sainte-H\u00e9l\u00e8ne"},"SKK":{"format":"{amount} {symbol}","symbol":"Sk","offset":100,"screen_name":"Couronne slovaque"},"SLL":{"format":"{symbol}{amount}","symbol":"Le","offset":100,"screen_name":"Leone de Sierra Leone"},"SOS":{"format":"{symbol}{amount}","symbol":"S","offset":100,"screen_name":"Shilling somalien"},"SRD":{"format":"{symbol}{amount}","symbol":"SRD","offset":100,"screen_name":"Dollar de Surinam"},"SSP":{"format":"{symbol}{amount}","symbol":"\u00a3","offset":100,"screen_name":"livre sud-soudanaise"},"STD":{"format":"{symbol}{amount}","symbol":"Db","offset":100,"screen_name":"Dobra de Sao Tom\u00e9"},"SVC":{"format":"{symbol}{amount}","symbol":"\u20a1","offset":100,"screen_name":"Colon salvadorien"},"SZL":{"format":"{symbol}{amount}","symbol":"L","offset":100,"screen_name":"Lilangeni du Swaziland"},"THB":{"format":"{symbol}{amount}","symbol":"\u0e3f","offset":100,"screen_name":"Baht tha\u00eflandais"},"TJS":{"format":"{symbol}{amount}","symbol":"\u0441.","offset":100,"screen_name":"Somoni tadjik"},"TMT":{"format":"{symbol}{amount}","symbol":"T","offset":100,"screen_name":"Manat turkm\u00e8ne"},"TND":{"format":"{amount} {symbol}","symbol":"\u062f.\u062a.","offset":100,"screen_name":"Dinar tunisien"},"TOP":{"format":"{symbol}{amount}","symbol":"T$","offset":100,"screen_name":"Pa\u02bbanga du Tonga"},"TRY":{"format":"{amount} {symbol}","symbol":"TL","offset":100,"screen_name":"Lire turque"},"TTD":{"format":"{symbol}{amount}","symbol":"TT$","offset":100,"screen_name":"Dollar de Trinit\u00e9-et-Tobago"},"TWD":{"format":"{symbol}{amount}","symbol":"NT$","offset":1,"screen_name":"Dollar de Taiwan"},"TZS":{"format":"{symbol}{amount}","symbol":"TSh","offset":100,"screen_name":"Shilling tanzanien"},"UAH":{"format":"{amount} {symbol}","symbol":"\u0433\u0440\u043d.","offset":100,"screen_name":"Hryvnia ukrainien"},"UGX":{"format":"{symbol}{amount}","symbol":"USh","offset":1,"screen_name":"Shilling ougandais"},"USD":{"format":"{symbol}{amount}","symbol":"$","offset":100,"screen_name":"Dollar am\u00e9ricain"},"UYU":{"format":"{symbol} {amount}","symbol":"$U","offset":100,"screen_name":"Peso uruguayen"},"UZS":{"format":"{amount} {symbol}","symbol":"\u0441\u045e\u043c","offset":100,"screen_name":"Sum ouzbek"},"VEF":{"format":"{symbol} {amount}","symbol":"Bs","offset":100,"screen_name":"Bolivar v\u00e9n\u00e9zu\u00e9lien"},"VND":{"format":"{amount} {symbol}","symbol":"\u20ab","offset":1,"screen_name":"Dong vietnamien"},"VUV":{"format":"{symbol}{amount}","symbol":"VT","offset":1,"screen_name":"Vatu vanuatais"},"WST":{"format":"{symbol}{amount}","symbol":"WS$","offset":100,"screen_name":"Tala de Samoa"},"XAF":{"format":"{symbol}{amount}","symbol":"FCFA","offset":1,"screen_name":"Franc d\u2019Afrique centrale"},"XCD":{"format":"{symbol}{amount}","symbol":"$","offset":100,"screen_name":"Dollar des Cara\u00efbes orientales"},"XOF":{"format":"{symbol}{amount}","symbol":"FCFA","offset":1,"screen_name":"Franc d\u2019Afrique de l\u2019Ouest"},"XPF":{"format":"{symbol}{amount}","symbol":"\u20a3","offset":1,"screen_name":"Franc Pacifique"},"YER":{"format":"{amount} {symbol}","symbol":"\u0631.\u064a.","offset":100,"screen_name":"Rial y\u00e9m\u00e9nite"},"ZAR":{"format":"{symbol} {amount}","symbol":"R","offset":100,"screen_name":"Rand sud-africain"},"ZMW":{"format":"{symbol}{amount}","symbol":"K","offset":100,"screen_name":"Kwacha zambien"},"ZWL":{"format":"{symbol}{amount}","symbol":"ZWL","offset":100,"screen_name":"Dollar zimbabw\u00e9en"}},"currency_map_for_cc":{"AED":{"format":"{amount} {symbol}","symbol":"\u062f.\u0625.","offset":100,"screen_name":"Dirham des \u00c9mirats arabes unis"},"ARS":{"format":"{symbol} {amount}","symbol":"$","offset":100,"screen_name":"Peso argentin"},"AUD":{"format":"{symbol}{amount}","symbol":"$","offset":100,"screen_name":"Dollar australien"},"BDT":{"format":"{symbol}{amount}","symbol":"\u09f3","offset":100,"screen_name":"Taka du Bangladesh"},"BOB":{"format":"{symbol} {amount}","symbol":"Bs.","offset":100,"screen_name":"Boliviano bolivien"},"BRL":{"format":"{symbol} {amount}","symbol":"R$","offset":100,"screen_name":"Real br\u00e9silien"},"CAD":{"format":"{symbol}{amount}","symbol":"$","offset":100,"screen_name":"Dollar canadien"},"CHF":{"format":"{symbol} {amount}","symbol":"Fr.","offset":100,"screen_name":"Franc suisse"},"CLP":{"format":"{symbol} {amount}","symbol":"$","offset":1,"screen_name":"Peso chilien"},"CNY":{"format":"{symbol}{amount}","symbol":"\u00a5","offset":100,"screen_name":"Yuan chinois"},"COP":{"format":"{symbol} {amount}","symbol":"$","offset":1,"screen_name":"Peso colombien"},"CRC":{"format":"{symbol}{amount}","symbol":"\u20a1","offset":1,"screen_name":"Colon costaricain"},"CZK":{"format":"{amount} {symbol}","symbol":"K\u010d","offset":100,"screen_name":"Couronne tch\u00e8que"},"DKK":{"format":"{amount} {symbol}","symbol":"kr.","offset":100,"screen_name":"Couronne danoise"},"DZD":{"format":"{amount} {symbol}","symbol":"DA","offset":100,"screen_name":"Dinar alg\u00e9rien"},"EGP":{"format":"{amount} {symbol}","symbol":"\u062c.\u0645.","offset":100,"screen_name":"Livre \u00e9gyptienne"},"EUR":{"format":"{symbol} {amount}","symbol":"\u20ac","offset":100,"screen_name":"Euro"},"GBP":{"format":"{symbol}{amount}","symbol":"\u00a3","offset":100,"screen_name":"Livre sterling"},"GTQ":{"format":"{symbol}{amount}","symbol":"Q","offset":100,"screen_name":"Quetzal guat\u00e9malt\u00e8que"},"HKD":{"format":"{symbol}{amount}","symbol":"$","offset":100,"screen_name":"Dollar de Hong Kong"},"HNL":{"format":"{symbol} {amount}","symbol":"L.","offset":100,"screen_name":"Lempira hondurien"},"HUF":{"format":"{amount} {symbol}","symbol":"Ft","offset":1,"screen_name":"Forint hongrois"},"IDR":{"format":"{symbol} {amount}","symbol":"Rp","offset":1,"screen_name":"Roupie indon\u00e9sienne"},"ILS":{"format":"{symbol}{amount}","symbol":"\u20aa","offset":100,"screen_name":"Nouveau Shekel israelien"},"INR":{"format":"{symbol} {amount}","symbol":"\u20b9","offset":100,"screen_name":"Roupie indienne"},"ISK":{"format":"{amount} {symbol}","symbol":"kr.","offset":1,"screen_name":"Couronne islandaise"},"JPY":{"format":"{symbol}{amount}","symbol":"\u00a5","offset":1,"screen_name":"Yen japonais"},"KES":{"format":"{symbol}{amount}","symbol":"KSh","offset":100,"screen_name":"Shilling kenyan"},"KRW":{"format":"{symbol}{amount}","symbol":"\u20a9","offset":1,"screen_name":"Won cor\u00e9en"},"MOP":{"format":"{symbol}{amount}","symbol":"MOP","offset":100,"screen_name":"Pataca de Macau"},"MXN":{"format":"{symbol}{amount}","symbol":"$","offset":100,"screen_name":"Peso mexicain"},"MYR":{"format":"{symbol}{amount}","symbol":"RM","offset":100,"screen_name":"Ringgit malaisien"},"NGN":{"format":"{symbol}{amount}","symbol":"\u20a6","offset":100,"screen_name":"Na\u00efra nig\u00e9rian"},"NIO":{"format":"{symbol} {amount}","symbol":"C$","offset":100,"screen_name":"C\u00f3rdoba nicaraguayen"},"NOK":{"format":"{symbol} {amount}","symbol":"kr","offset":100,"screen_name":"Couronne norv\u00e9gienne"},"NZD":{"format":"{symbol}{amount}","symbol":"$","offset":100,"screen_name":"Dollar n\u00e9o-z\u00e9landais"},"PEN":{"format":"{symbol} {amount}","symbol":"S\/","offset":100,"screen_name":"Nuevo Sol p\u00e9ruvien"},"PHP":{"format":"{symbol}{amount}","symbol":"\u20b1","offset":100,"screen_name":"Peso philippin"},"PKR":{"format":"{symbol}{amount}","symbol":"Rs","offset":100,"screen_name":"Roupie pakistanaise"},"PLN":{"format":"{amount} {symbol}","symbol":"z\u0142","offset":100,"screen_name":"Zloty polonais"},"PYG":{"format":"{symbol} {amount}","symbol":"\u20b2","offset":1,"screen_name":"Guarani paraguayen"},"QAR":{"format":"{amount} {symbol}","symbol":"\u0631.\u0642.","offset":100,"screen_name":"Riyal qatari"},"RON":{"format":"{amount} {symbol}","symbol":"lei","offset":100,"screen_name":"Leu roumain"},"RUB":{"format":"{amount} {symbol}","symbol":"p.","offset":100,"screen_name":"Rouble russe"},"SAR":{"format":"{amount} {symbol}","symbol":"\u0631.\u0633.","offset":100,"screen_name":"Riyal d\u2019Arabie Saoudite"},"SEK":{"format":"{amount} {symbol}","symbol":"kr","offset":100,"screen_name":"Couronne su\u00e9doise"},"SGD":{"format":"{symbol}{amount}","symbol":"$","offset":100,"screen_name":"Dollar de Singapour"},"THB":{"format":"{symbol}{amount}","symbol":"\u0e3f","offset":100,"screen_name":"Baht tha\u00eflandais"},"TRY":{"format":"{amount} {symbol}","symbol":"TL","offset":100,"screen_name":"Lire turque"},"TWD":{"format":"{symbol}{amount}","symbol":"NT$","offset":1,"screen_name":"Dollar de Taiwan"},"USD":{"format":"{symbol}{amount}","symbol":"$","offset":100,"screen_name":"Dollar am\u00e9ricain"},"UYU":{"format":"{symbol} {amount}","symbol":"$U","offset":100,"screen_name":"Peso uruguayen"},"VND":{"format":"{amount} {symbol}","symbol":"\u20ab","offset":1,"screen_name":"Dong vietnamien"},"ZAR":{"format":"{symbol} {amount}","symbol":"R","offset":100,"screen_name":"Rand sud-africain"}},"currency_map_for_ads":{"AED":{"format":"{amount} {symbol}","symbol":"\u062f.\u0625.","offset":100,"screen_name":"Dirham des \u00c9mirats arabes unis"},"ARS":{"format":"{symbol} {amount}","symbol":"$","offset":100,"screen_name":"Peso argentin"},"AUD":{"format":"{symbol}{amount}","symbol":"$","offset":100,"screen_name":"Dollar australien"},"BDT":{"format":"{symbol}{amount}","symbol":"\u09f3","offset":100,"screen_name":"Taka du Bangladesh"},"BOB":{"format":"{symbol} {amount}","symbol":"Bs.","offset":100,"screen_name":"Boliviano bolivien"},"BRL":{"format":"{symbol} {amount}","symbol":"R$","offset":100,"screen_name":"Real br\u00e9silien"},"CAD":{"format":"{symbol}{amount}","symbol":"$","offset":100,"screen_name":"Dollar canadien"},"CHF":{"format":"{symbol} {amount}","symbol":"Fr.","offset":100,"screen_name":"Franc suisse"},"CLP":{"format":"{symbol} {amount}","symbol":"$","offset":1,"screen_name":"Peso chilien"},"CNY":{"format":"{symbol}{amount}","symbol":"\u00a5","offset":100,"screen_name":"Yuan chinois"},"COP":{"format":"{symbol} {amount}","symbol":"$","offset":1,"screen_name":"Peso colombien"},"CRC":{"format":"{symbol}{amount}","symbol":"\u20a1","offset":1,"screen_name":"Colon costaricain"},"CZK":{"format":"{amount} {symbol}","symbol":"K\u010d","offset":100,"screen_name":"Couronne tch\u00e8que"},"DKK":{"format":"{amount} {symbol}","symbol":"kr.","offset":100,"screen_name":"Couronne danoise"},"DZD":{"format":"{amount} {symbol}","symbol":"DA","offset":100,"screen_name":"Dinar alg\u00e9rien"},"EGP":{"format":"{amount} {symbol}","symbol":"\u062c.\u0645.","offset":100,"screen_name":"Livre \u00e9gyptienne"},"EUR":{"format":"{symbol} {amount}","symbol":"\u20ac","offset":100,"screen_name":"Euro"},"GBP":{"format":"{symbol}{amount}","symbol":"\u00a3","offset":100,"screen_name":"Livre sterling"},"GTQ":{"format":"{symbol}{amount}","symbol":"Q","offset":100,"screen_name":"Quetzal guat\u00e9malt\u00e8que"},"HKD":{"format":"{symbol}{amount}","symbol":"$","offset":100,"screen_name":"Dollar de Hong Kong"},"HNL":{"format":"{symbol} {amount}","symbol":"L.","offset":100,"screen_name":"Lempira hondurien"},"HUF":{"format":"{amount} {symbol}","symbol":"Ft","offset":1,"screen_name":"Forint hongrois"},"IDR":{"format":"{symbol} {amount}","symbol":"Rp","offset":1,"screen_name":"Roupie indon\u00e9sienne"},"ILS":{"format":"{symbol}{amount}","symbol":"\u20aa","offset":100,"screen_name":"Nouveau Shekel israelien"},"INR":{"format":"{symbol} {amount}","symbol":"\u20b9","offset":100,"screen_name":"Roupie indienne"},"ISK":{"format":"{amount} {symbol}","symbol":"kr.","offset":1,"screen_name":"Couronne islandaise"},"JPY":{"format":"{symbol}{amount}","symbol":"\u00a5","offset":1,"screen_name":"Yen japonais"},"KES":{"format":"{symbol}{amount}","symbol":"KSh","offset":100,"screen_name":"Shilling kenyan"},"KRW":{"format":"{symbol}{amount}","symbol":"\u20a9","offset":1,"screen_name":"Won cor\u00e9en"},"MOP":{"format":"{symbol}{amount}","symbol":"MOP","offset":100,"screen_name":"Pataca de Macau"},"MXN":{"format":"{symbol}{amount}","symbol":"$","offset":100,"screen_name":"Peso mexicain"},"MYR":{"format":"{symbol}{amount}","symbol":"RM","offset":100,"screen_name":"Ringgit malaisien"},"NGN":{"format":"{symbol}{amount}","symbol":"\u20a6","offset":100,"screen_name":"Na\u00efra nig\u00e9rian"},"NIO":{"format":"{symbol} {amount}","symbol":"C$","offset":100,"screen_name":"C\u00f3rdoba nicaraguayen"},"NOK":{"format":"{symbol} {amount}","symbol":"kr","offset":100,"screen_name":"Couronne norv\u00e9gienne"},"NZD":{"format":"{symbol}{amount}","symbol":"$","offset":100,"screen_name":"Dollar n\u00e9o-z\u00e9landais"},"PEN":{"format":"{symbol} {amount}","symbol":"S\/","offset":100,"screen_name":"Nuevo Sol p\u00e9ruvien"},"PHP":{"format":"{symbol}{amount}","symbol":"\u20b1","offset":100,"screen_name":"Peso philippin"},"PKR":{"format":"{symbol}{amount}","symbol":"Rs","offset":100,"screen_name":"Roupie pakistanaise"},"PLN":{"format":"{amount} {symbol}","symbol":"z\u0142","offset":100,"screen_name":"Zloty polonais"},"PYG":{"format":"{symbol} {amount}","symbol":"\u20b2","offset":1,"screen_name":"Guarani paraguayen"},"QAR":{"format":"{amount} {symbol}","symbol":"\u0631.\u0642.","offset":100,"screen_name":"Riyal qatari"},"RON":{"format":"{amount} {symbol}","symbol":"lei","offset":100,"screen_name":"Leu roumain"},"RUB":{"format":"{amount} {symbol}","symbol":"p.","offset":100,"screen_name":"Rouble russe"},"SAR":{"format":"{amount} {symbol}","symbol":"\u0631.\u0633.","offset":100,"screen_name":"Riyal d\u2019Arabie Saoudite"},"SEK":{"format":"{amount} {symbol}","symbol":"kr","offset":100,"screen_name":"Couronne su\u00e9doise"},"SGD":{"format":"{symbol}{amount}","symbol":"$","offset":100,"screen_name":"Dollar de Singapour"},"THB":{"format":"{symbol}{amount}","symbol":"\u0e3f","offset":100,"screen_name":"Baht tha\u00eflandais"},"TRY":{"format":"{amount} {symbol}","symbol":"TL","offset":100,"screen_name":"Lire turque"},"TWD":{"format":"{symbol}{amount}","symbol":"NT$","offset":1,"screen_name":"Dollar de Taiwan"},"USD":{"format":"{symbol}{amount}","symbol":"$","offset":100,"screen_name":"Dollar am\u00e9ricain"},"UYU":{"format":"{symbol} {amount}","symbol":"$U","offset":100,"screen_name":"Peso uruguayen"},"VND":{"format":"{amount} {symbol}","symbol":"\u20ab","offset":1,"screen_name":"Dong vietnamien"},"ZAR":{"format":"{symbol} {amount}","symbol":"R","offset":100,"screen_name":"Rand sud-africain"}},"currency_locale_format":{"AL":"{amount}{symbol}","DZ":"{amount} {symbol}","AR":"{symbol} {amount}","AM":"{amount} {symbol}","AU":"{symbol}{amount}","AT":"{symbol} {amount}","AZ":"{amount} {symbol}","BH":"{amount} {symbol}","BY":"{amount} {symbol}","BE":"{amount} {symbol}","BZ":"","BO":"{symbol} {amount}","BR":"{symbol} {amount}","BN":"","BG":"{amount} {symbol}","CA":"{symbol}{amount}","CL":"{symbol} {amount}","CO":"{symbol} {amount}","CR":"{symbol}{amount}","HR":"{amount} {symbol}","CZ":"{amount} {symbol}","DK":"{amount} {symbol}","DO":"{symbol} {amount}","EC":"{symbol} {amount}","EG":"{amount} {symbol}","SV":"{symbol}{amount}","EE":"{amount} {symbol}","FO":"{symbol} {amount}","FI":"{amount} {symbol}","FR":"{amount} {symbol}","GE":"{amount} {symbol}","DE":"{amount} {symbol}","GR":"{amount} {symbol}","GT":"{symbol}{amount}","HN":"{symbol} {amount}","HK":"{symbol}{amount}","HU":"{amount} {symbol}","IS":"{amount} {symbol}","IN":"{symbol} {amount}","ID":"{symbol} {amount}","IR":"{amount} {symbol}","IQ":"{amount} {symbol}","IE":"{symbol} {amount}","PK":"{symbol}{amount}","IL":"{symbol}{amount}","IT":"{symbol} {amount}","JM":"{symbol}{amount}","JP":"{symbol}{amount}","JO":"{amount} {symbol}","KZ":"{symbol}{amount}","KE":"{symbol}{amount}","KR":"{symbol}{amount}","KW":"{amount} {symbol}","KG":"{amount} {symbol}","LV":"{symbol} {amount}","LB":"{amount} {symbol}","LY":"{amount} {symbol}","LI":"{symbol} {amount}","LT":"{amount} {symbol}","LU":"{amount} {symbol}","MO":"{symbol}{amount}","MK":"{amount} {symbol}","MY":"{symbol}{amount}","MV":"","MX":"{symbol}{amount}","MN":"{amount}{symbol}","MA":"{amount} {symbol}","NL":"{symbol} {amount}","NZ":"{symbol}{amount}","NI":"{symbol} {amount}","NO":"{symbol} {amount}","OM":"{amount} {symbol}","PA":"{symbol} {amount}","PY":"{symbol} {amount}","CN":"{symbol}{amount}","PE":"{symbol} {amount}","PL":"{amount} {symbol}","PT":"{amount} {symbol}","MC":"{amount} {symbol}","PR":"{symbol} {amount}","QA":"{amount} {symbol}","PH":"{symbol}{amount}","RO":"{amount} {symbol}","RU":"{amount} {symbol}","SA":"{amount} {symbol}","SG":"{symbol}{amount}","SK":"{amount} {symbol}","SI":"{amount} {symbol}","ZA":"{symbol} {amount}","ES":"{amount} {symbol}","SE":"{amount} {symbol}","CH":"{symbol} {amount}","SY":"{amount} {symbol}","TW":"{symbol}{amount}","TH":"{symbol}{amount}","TT":"","TN":"{amount} {symbol}","TR":"{amount} {symbol}","AE":"{amount} {symbol}","UA":"{amount} {symbol}","GB":"{symbol}{amount}","US":"{symbol}{amount}","UY":"{symbol} {amount}","UZ":"{amount} {symbol}","VE":"{symbol} {amount}","VN":"{amount} {symbol}","YE":"{amount} {symbol}","ZW":""}},745],["RelayAPIConfigDefaults",["__inst_84473062_0_0","__inst_84473062_0_1","__inst_84473062_0_2"],{"accessToken":"","actorID":"0","customHeaders":{},"enableNetworkLogger":false,"fetchTimeout":30000,"graphBatchURI":{"__m":"__inst_84473062_0_0"},"graphURI":{"__m":"__inst_84473062_0_1"},"retryDelays":[1000,3000],"useXController":true,"xhrEncoding":null,"subscriptionTopicURI":{"__m":"__inst_84473062_0_2"},"withCredentials":false,"isProductionEndpoint":false},926],["CLDRDateRenderingClientRollout",[],{"formatDateClientLoggerSamplingRate":0.0001},3003],["GQLSHeartbeatConfig",[],{"heartbeat_interval":5000},3674],["CLDRDateFormatConfig",[],{"supportedPHPFormatsKeys":{"D":"E","D g:ia":"Ejm","D M d":"MMMEd","D M d, Y":"yMMMEd","D M j":"MMMEd","D M j, y":"yMMMEd","D, M j":"MMMEd","D, M j, Y":"yMMMEd","F d":"MMMMd","F d, Y":"date_long","F j":"MMMMd","F j, Y":"date_long","F j, Y \u0040 g:i A":"dateTime_long_short","F j, Y g:i a":"dateTime_long_short","F j, Y \u0040 g:i:s A":"dateTime_long_medium","F jS":"MMMMd","F jS, g:ia":"dateTime_long_short","F jS, Y":"date_long","F Y":"yMMMM","g A":"j","G:i":"time_short","g:i":"time_short","g:i a":"time_short","g:i A":"time_short","g:i:s A":"time_medium","g:ia":"time_short","g:iA":"time_short","g:ia F jS, Y":"dateTime_long_short","g:iA l, F jS":"dateTime_full_short","g:ia M jS":"dateTime_medium_short","g:ia, F jS":"dateTime_long_short","g:iA, l M jS":"dateTime_full_short","h:i a":"time_short","h:m:s m\/d\/Y":"dateTime_short_short","j":"d","j F Y":"date_long","l F d, Y":"date_full","l, F d, Y":"date_full","l, F j":"date_full","l, F j, Y":"date_full","l, F jS":"date_full","l, F jS, g:ia":"dateTime_full_short","l, M j":"date_full","l, M j, Y":"date_full","l, M j, Y g:ia":"dateTime_full_short","M d":"MMMd","M d, Y":"date_medium","M d, Y g:ia":"dateTime_medium_short","M d, Y ga":"dateTime_medium_short","M j":"MMMd","M j, Y":"date_medium","M j, Y g:i A":"dateTime_medium_short","M j, Y g:ia":"dateTime_medium_short","M jS, g:ia":"dateTime_medium_short","M y":"yMMM","M Y":"yMMM","M. d":"MMMd","M. d, Y":"date_medium","m\/d":"Md","m\/d\/Y g:ia":"dateTime_short_short","m\/d\/y H:i:s":"dateTime_short_short","n":"M","n\/j":"Md","n\/j, g:ia":"dateTime_short_short","n\/j\/y":"date_short","Y":"y"},"isLocaleInConfigerator":true,"CLDRConfigeratorFormats":{"dateFormats":{"full":"EEEE d MMMM y","long":"d MMMM y","medium":"d MMM y","short":"dd\/MM\/y"},"timeFormats":{"full":"HH:mm:ss zzzz","long":"HH:mm:ss z","medium":"HH:mm:ss","short":"HH:mm"},"dateTimeFormats":{"full":"{1} '\u00e0' {0}","long":"{1} '\u00e0' {0}","medium":"{1} '\u00e0' {0}","short":"{1} {0}"},"availableFormats":{"Bh":"h B","Bhm":"h:mm B","Bhms":"h:mm:ss B","E":"E","EBhm":"E h:mm B","EBhms":"E h:mm:ss B","EHm":"E HH:mm","EHms":"E HH:mm:ss","Ed":"E d","Ehm":"E h:mm a","Ehms":"E h:mm:ss a","Gy":"y G","GyMMM":"MMM y G","GyMMMEd":"E d MMM y G","GyMMMd":"d MMM y G","H":"HH 'h'","Hm":"HH:mm","Hms":"HH:mm:ss","Hmsv":"HH:mm:ss v","Hmv":"HH:mm v","M":"L","MEd":"E dd\/MM","MMM":"LLL","MMMEd":"E d MMM","MMMMW-count-one":"'semaine' W (MMMM)","MMMMW-count-other":"'semaine' W (MMMM)","MMMMd":"d MMMM","MMMd":"d MMM","Md":"dd\/MM","d":"d","h":"h a","hm":"h:mm a","hms":"h:mm:ss a","hmsv":"h:mm:ss a v","hmv":"h:mm a v","ms":"mm:ss","y":"y","yM":"MM\/y","yMEd":"E dd\/MM\/y","yMMM":"MMM y","yMMMEd":"E d MMM y","yMMMM":"MMMM y","yMMMd":"d MMM y","yMd":"dd\/MM\/y","yQQQ":"QQQ y","yQQQQ":"QQQQ y","yw-count-one":"'semaine' w 'de' Y","yw-count-other":"'semaine' w 'de' Y"}},"CLDRRegionalConfigeratorFormats":{"dateFormats":{"full":"EEEE d MMMM y","long":"d MMMM y","medium":"d MMM y","short":"dd\/MM\/y"},"timeFormats":{"full":"HH:mm:ss zzzz","long":"HH:mm:ss z","medium":"HH:mm:ss","short":"HH:mm"},"dateTimeFormats":{"full":"{1} '\u00e0' {0}","long":"{1} '\u00e0' {0}","medium":"{1} '\u00e0' {0}","short":"{1} {0}"},"availableFormats":{"Bh":"h B","Bhm":"h:mm B","Bhms":"h:mm:ss B","E":"E","EBhm":"E h:mm B","EBhms":"E h:mm:ss B","EHm":"E HH:mm","EHms":"E HH:mm:ss","Ed":"E d","Ehm":"E h:mm a","Ehms":"E h:mm:ss a","Gy":"y G","GyMMM":"MMM y G","GyMMMEd":"E d MMM y G","GyMMMd":"d MMM y G","H":"HH 'h'","Hm":"HH:mm","Hms":"HH:mm:ss","Hmsv":"HH:mm:ss v","Hmv":"HH:mm v","M":"L","MEd":"E dd\/MM","MMM":"LLL","MMMEd":"E d MMM","MMMMW-count-one":"'semaine' W (MMMM)","MMMMW-count-other":"'semaine' W (MMMM)","MMMMd":"d MMMM","MMMd":"d MMM","Md":"dd\/MM","d":"d","h":"h a","hm":"h:mm a","hms":"h:mm:ss a","hmsv":"h:mm:ss a v","hmv":"h:mm a v","ms":"mm:ss","y":"y","yM":"MM\/y","yMEd":"E dd\/MM\/y","yMMM":"MMM y","yMMMEd":"E d MMM y","yMMMM":"MMMM y","yMMMd":"d MMM y","yMd":"dd\/MM\/y","yQQQ":"QQQ y","yQQQQ":"QQQQ y","yw-count-one":"'semaine' w 'de' Y","yw-count-other":"'semaine' w 'de' Y"}},"CLDRToPHPSymbolConversion":{"yyyy":"Y","yy":"y","y":"Y","MMMMM":"M","MMMM":"F","MMM":"M","MM":"m","M":"n","dd":"d","d":"j","EEEEE":"D","EEEE":"l","EEE":"D","EE":"D","E":"D","aaaaa":"A","aaaa":"A","aaa":"A","aa":"A","a":"A","bbbbb":"A","bbbb":"A","bbb":"A","bb":"A","b":"A","BBBBB":"A","BBBB":"A","BBB":"A","BB":"A","B":"A","HH":"H","H":"G","hh":"h","h":"g","K":"g","mm":"i","ss":"s","z":"","zz":"","zzz":"","ccccc":"D","cccc":"l","ccc":"D","cc":"D","c":"D","LLLLL":"M","LLLL":"f","LLL":"M","LL":"m","L":"n","G":""},"intlDateSpecialChars":{"cldrDelimiter":"'","singleQuote":"'","singleQuoteHolder":"*"}},3019],["BladeRunnerGeneratedWhitelist",[],{"prefixes":{},"skywalkerTopicPrefixes":[]},4219],["IsInternSite",[],{"is_intern_site":false},4517],["BladeRunnerWWWExternSubscriptionsWhitelist",[],{"externSubscriptionsWhitelist":["gqls\/actor_gateway_enroll_subscribe","gqls\/ad_draft_publish_subscribe","gqls\/ad_preview_generate_subscribe","gqls\/ads_ldb_replace_subscribe","gqls\/ads_video_status_subscribe","gqls\/aloha_add_contacts_subscribe","gqls\/aloha_add_favorites_subscribe","gqls\/aloha_add_owner_subscribe","gqls\/aloha_allowed_proximity_device_add_subscribe","gqls\/aloha_call_media_update_subscribe","gqls\/aloha_delete_subscribe","gqls\/aloha_media_update_subscribe","gqls\/aloha_owner_decline_invite_subscribe","gqls\/aloha_owner_status_change_subscribe","gqls\/aloha_remove_contacts_subscribe","gqls\/aloha_remove_favorites_subscribe","gqls\/aloha_remove_owner_subscribe","gqls\/aloha_shared_album_add_contributor_subscribe","gqls\/aloha_superframe_user_config_update_subscribe","gqls\/ar_hub_user_pose_subscribe","gqls\/arcade_toast_subscribe","gqls\/assistant_geofences_changed_subscribe","gqls\/authenticity_correspondence_refresh_subscribe","gqls\/authenticity_pending_check_update_subscribe","gqls\/authenticity_public_records_update_subscribe","gqls\/awareness_hub_incident_update_subscribe","gqls\/batch_notification_state_change_subscribe","gqls\/bulk_contacts_update_subscribe","gqls\/business_request_delete_subscribe","gqls\/businesses_fetch_subscribe","gqls\/chex_merchant_bulk_action_report_update_subscribe","gqls\/chex_merchant_report_update_subscribe","gqls\/cloudysequoia_message_event_subscribe","gqls\/comment_delete_subscribe","gqls\/comment_edit_subscribe","gqls\/compass_curated_unit_version_event_subscribe","gqls\/config_fetch_subscribe","gqls\/consumer_payment_session_status_subscribe","gqls\/creator_live_status_changed","gqls\/custom_sticker_unlock_subscribe","gqls\/direct_inbox_badge_subscribe","gqls\/direct_message_inbox_badge_subscribe","gqls\/direct_message_thread_status_subscribe","gqls\/direct_thread_subscribe","gqls\/employee_checkup_async_job_instance_subscribe","gqls\/employee_checkup_crisis_user_status_update_subscribe","gqls\/employee_checkup_dispatch_job_status_change_subscribe","gqls\/employee_graphql_use_subscribe","gqls\/employee_nt_use_subscribe","gqls\/event_confirmed_going_subscribe","gqls\/event_invite_subscribe","gqls\/event_rsvp_subscribe","gqls\/event_ticket_order_count_subscribe","gqls\/event_ticket_order_purchase_status_change","gqls\/export_contacts_list_link_subscribe","gqls\/facebook_pixel_fire_subscribe","gqls\/facecast_comment_reaction_subscribe","gqls\/facecast_comment_reply_create_subscribe","gqls\/facecast_count_hashtags_comment_aggregation_subscribe","gqls\/facecast_count_specific_comment_aggregation_subscribe","gqls\/facecast_first_comment_aggregation_subscribe","gqls\/fb_vr_notification_subscribe","gqls\/file_scanner_status_subscribe","gqls\/food_drink_order_create_subscribe","gqls\/frame_image_asset_processing_subscribe","gqls\/friend_request_confirm_subscribe","gqls\/friend_request_receive_subscribe","gqls\/friendone_pulse_subscribe","gqls\/friendone_typing_subscribe","gqls\/game_leaderboard_subscribe","gqls\/game_play_subscribe","gqls\/games_service_profile_subscribe","gqls\/games_tab_live_badge_subscribe","gqls\/gametime_match_add_expert_story_subscribe","gqls\/gametime_match_data_update_subscribe","gqls\/gametime_match_home_reaction_surface_add_unit_subscribe","gqls\/gametime_match_play_create_subscribe","gqls\/gametime_match_play_remove_subscribe","gqls\/gametime_match_play_update_subscribe","gqls\/gemstone_connected_instagram_subscribe","gqls\/gemstone_new_interest_subscribe","gqls\/gemstone_new_message_subscribe","gqls\/gizmo_pa_alerts_subscribe","gqls\/gqls_dashboard_ping_subscribe","gqls\/graph_editor_history_badge_subscribe","gqls\/group_pin_story_subscribe","gqls\/group_unseen_activity_subscribe","gqls\/hateful_friction_status_update_validation_subscribe","gqls\/instagram_live_video_comment_create_subscribe","gqls\/instant_game_platform_debug_command_subscribe","gqls\/intl_comment_posted_subscribe","gqls\/job_thread_application_subscribe","gqls\/kototoro_story_creation_subscribe","gqls\/kototoro_user_follow_subscribe","gqls\/live_chat_command_subscribe","gqls\/live_donation_video_donate_event_subscribe","gqls\/live_feed","gqls\/live_gaming_ads_auto_squeezeback_toggle_subscribe","gqls\/live_linear_video_channel_create_subscribe","gqls\/live_location_session_subscribe","gqls\/live_location_tickle_subscribe","gqls\/live_location_update_subscribe","gqls\/live_sticker_used_subscribe","gqls\/live_video_commentating_event_subscribe","gqls\/live_video_commerce_interest_subscribe","gqls\/live_video_commercial_break_subscribe","gqls\/live_video_currently_open_video_card_subscribe","gqls\/live_video_donation_alert_event_subscribe","gqls\/live_video_event_promotion_response_count_subscribe","gqls\/live_video_fbb_viewer_subscribe","gqls\/live_video_highlighted_comments_subscribe","gqls\/live_video_monetizable_subscribe","gqls\/live_video_mutation_error_subscribe","gqls\/live_video_product_tagging_event_subscribe","gqls\/live_video_share_count_update_subscribe","gqls\/live_video_takedown_subscribe","gqls\/live_video_viewer_mode_subscribe","gqls\/live_video_viewer_specific_component_subscribe","gqls\/live_video_vod_ready_subscribe","gqls\/live_video_wave_subscribe","gqls\/live_with_request_to_join_broadcaster_subscribe","gqls\/living_room_banner_notification_subscribe","gqls\/living_room_comment_reply_create_subscribe","gqls\/living_room_comment_update_subscribe","gqls\/living_room_crowd_noise_subscribe","gqls\/living_room_crowdsource_event_subscribe","gqls\/living_room_custom_name_subscribe","gqls\/living_room_is_rtc_call_ongoing_subscribe","gqls\/living_room_permissions_subscribe","gqls\/living_room_recap_subscribe","gqls\/living_room_status_update_subscribe","gqls\/living_room_youtube_video_state_subscribe","gqls\/location_party_update_subscribe","gqls\/loyalty_card_punch_subscribe","gqls\/lwi_async_creation_status_subscribe","gqls\/marketplace_auction_highest_bid_subscribe","gqls\/marketplace_listing_renderable_update_subscribe","gqls\/marketplace_notification_subscribe","gqls\/marketplace_rating_update_subscribe","gqls\/marketplace_thread_update_subscribe","gqls\/message_thread_subscribe","gqls\/messenger_business_persistent_menu_update_subscribe","gqls\/messenger_call_updated_subscribe","gqls\/messenger_chat_sounds_setting_subscribe","gqls\/messenger_chat_tabs_setting_subscribe","gqls\/messenger_cowatch_autoplay_subscribe","gqls\/messenger_living_room_auto_play_subscribe","gqls\/messenger_living_room_reactions_subscribe","gqls\/messenger_living_room_update_subscribe","gqls\/mockup_migrate_subscribe","gqls\/montage_message_follower_read_subscribe","gqls\/multi_directed_post_change_subscribe","gqls\/notification_state_change_subscribe","gqls\/nt_commerce_post_update_subscribe","gqls\/nt_crowdsourcing_editor_profile_header_edits_subscribe","gqls\/nt_example_1_subscribe","gqls\/nt_fb_ig_link_confirmation_status_subscribe","gqls\/nt_fb_ig_sync_login_subscribe","gqls\/nt_games_service_profile_subscribe","gqls\/nt_gaming_arena_event_hscroll_subscribe","gqls\/nt_gaming_arena_subscribe","gqls\/nt_gaming_destination_landing_ux_subscribe","gqls\/nt_gaming_destination_rewards_subscribe","gqls\/nt_gaming_video_comment_create_subscribe","gqls\/nt_gaming_video_community_feed_comment_create_subscribe","gqls\/nt_instant_game_leaderboard_card_subscribe","gqls\/nt_instant_game_leaderboard_story_subscribe","gqls\/nt_instant_game_tournament_subscribe","gqls\/nt_instant_games_daily_challenge_section_subscribe","gqls\/nt_instant_games_recently_played_section_subscribe","gqls\/nt_ldp_transaction_tool_selector_redirect_url_subscribe","gqls\/nt_marketplace_auction_highest_bid_subscribe","gqls\/nt_marketplace_bsg_manage_your_listings_subscribe","gqls\/nt_services_appointment_advanced_setting_start_time_increments_subscribe","gqls\/nt_services_double_booking_setting_subscribe","gqls\/nt_services_instagram_connection_subscribe","gqls\/nt_services_instagram_provision_subscribe","gqls\/nt_services_page_creation_appt_setup_subscribe","gqls\/nt_video_stars_comments_create_subscribe","gqls\/nt_viewer_sheet_message_subscribe","gqls\/nt_viewer_sheet_privacy_subscribe","gqls\/nt_watch_feed_living_room_subscribe","gqls\/nt_workplace_account_created_subscribe","gqls\/opp_step_sequence_update_subscribe","gqls\/order_tracking_status_update_subscribe","gqls\/page_away_toggle_subscribe","gqls\/page_change_website_subscribe","gqls\/page_comm_item_delete_subscribe","gqls\/page_comm_item_edit_subscribe","gqls\/page_comm_item_part_delete_subscribe","gqls\/page_comm_item_part_edit_subscribe","gqls\/page_comment_create_subscribe","gqls\/page_crm_contact_update_subscribe","gqls\/page_follow_subscribe","gqls\/page_like_subscribe","gqls\/page_save_subscribe","gqls\/page_wec_group_info_update_subscribe","gqls\/pages_message_tagging_subscribe","gqls\/payment_account_email_verified_subscribe","gqls\/pelican_annotation_create_subscribe","gqls\/pelican_annotation_delete_subscribe","gqls\/pelican_annotation_update_subscribe","gqls\/pinned_comment_event_create_subscribe","gqls\/pinned_streaming_comment_pin_subscribe","gqls\/pinned_streaming_comment_unpin_subscribe","gqls\/platform_page_like_subscribe","gqls\/poll_answer_subscribe","gqls\/post_to_instagram_crossposting_result_subscribe","gqls\/presma_whats_app_verify_complete_subscribe","gqls\/prism_user_online_subscribe","gqls\/prism_video_watching_subscribe","gqls\/profile_plus_transition_tracker_subscribe","gqls\/qrp_points_add_subscribe","gqls\/question_vote_subscribe","gqls\/quick_promotion_trigger","gqls\/reaction_gametime_football_live_header_update_subscribe","gqls\/reaction_gametime_live_header_update_subscribe","gqls\/reaction_gametime_match_component_update_subscribe","gqls\/reaction_unit_update_subscribe","gqls\/refresh_news_feed_subscribe","gqls\/ride_request_current_location_update_subscribe","gqls\/rtc_activity_update_subscribe","gqls\/rtweb_call_blocked_setting_subscribe","gqls\/rung_participants_added_subscribe","gqls\/sc_attachment_update_subscribe","gqls\/scheduled_start_time_update_subscribe","gqls\/scheduled_video_content_status_change_subscribe","gqls\/services_appointment_badge_subscribe","gqls\/services_appointment_update_subscribe","gqls\/services_instagram_login_update_subscribe","gqls\/signals_real_time_event_log_subscribe","gqls\/so_information_update_subscribe","gqls\/social_vr_party_invitation_subscribe","gqls\/sourcing_event_update_subscribe","gqls\/sourcing_worksheet_update_subscribe","gqls\/spaces_vr_viewer_friend_request_subscribe","gqls\/src_change_order_set_approver_subscribe","gqls\/src_change_order_set_status_subscribe","gqls\/src_change_order_upsert_subscribe","gqls\/src_change_request_assignee_update_subscribe","gqls\/src_change_request_status_update_subscribe","gqls\/src_cr_discussion_create_subscribe","gqls\/src_event_question_assignee_collaborator_update_subscribe","gqls\/src_event_question_status_update_subscribe","gqls\/src_psm_change_order_set_status_subscribe","gqls\/srt_collect_agent_phone_subscribe","gqls\/srt_collect_mail_received_subscribe","gqls\/srt_consumer_hardware_customer_support_status_context_subscribe","gqls\/srt_job_with_support_bot_sessions_attach_subscribe","gqls\/srt_update_center_unread_count_subscribe","gqls\/stonehenge_account_linking_signal_received_subscribe","gqls\/store_customer_support_phone_call_disconnect_subscribe","gqls\/story_card_status_subscribe","gqls\/story_reply_subscribe","gqls\/stream_chain_event_subscribe","gqls\/superframe_photo_ranking_subscribe","gqls\/support_bot_last_message_subscribe","gqls\/support_bot_message_subscribe","gqls\/support_bot_session_article_list_subscribe","gqls\/support_bot_session_status_subscribe","gqls\/support_case_email_subscription_update_subscribe","gqls\/test_e2e_measurement_drop_receives_subscribe","gqls\/test_e2e_measurement_vanilla_subscribe","gqls\/tip_jar_tip_event_subscribe","gqls\/together_bot_send_message_subscribe","gqls\/together_vr_ping_subscribe","gqls\/trivia_game_extra_life_get_subscribe","gqls\/tv_session_end_subscribe","gqls\/tv_session_start_subscribe","gqls\/tv_session_update_subscribe","gqls\/user_primary_email_subscribe","gqls\/vce_auto_cropping_status_subscribe","gqls\/vce_overlay_status_subscribe","gqls\/verse_game_chat_feedback_channel_comment_subscribe","gqls\/verse_reported_messages_change_subscribe","gqls\/video_broadcast_schedule_set_start_time_subscribe","gqls\/video_community_moderation_subscribe","gqls\/video_home_badge_update_subscribe","gqls\/video_live_video_suicide_prevention_flag_subscribe","gqls\/video_monetization_creator_update_subscribe","gqls\/video_recognized_user_subscribe","gqls\/video_text_question_owner_create_subscribe","gqls\/video_text_question_owner_delete_subscribe","gqls\/video_text_question_response_subscribe","gqls\/video_text_question_update_subscribe","gqls\/video_tip_jar_payment_event_subscribe","gqls\/vidwalla_event_subscribe","gqls\/viewer_poke_subscribe","gqls\/vod_cvc_update_subscribe","gqls\/vr_persona_custom_world_publish_subscribe","gqls\/vr_persona_follow_subscribe","gqls\/vr_wall_page_photos_publish_subscribe","gqls\/waba_insights_report_subscribe","gqls\/watch_cms_note_create_subscribe","gqls\/watch_cms_note_update_subscribe","gqls\/woodhenge_supporter_event_subscribe","gqls\/work_availability_status_change_subscribe","gqls\/work_availability_status_fanout_subscribe","gqls\/work_device_itap_company_remove_admin_subscribe","gqls\/work_safety_crisis_update_subscribe","gqls\/work_survey_people_set_create_subscribe"]},4573],["AvailableListInitialData",[],{},166],["ChatConfigInitialData",[],{},12],["ChatOptionsInitialData",[],{"sound":null,"sidebar_mode":null,"browser_notif":null,"hide_admined_pages":null,"hide_businesses":null,"hide_groups":null,"hide_marketplace":null,"call_blocked_until":0,"hide_buddylist":null,"turn_off_chat_tabs":-1},13],["EmojiConfig",[],{"pixelRatio":"1","schemaAuth":"https:\/\/static.xx.fbcdn.net\/images\/emoji.php\/v9","hasEmojiPickerSearch":false},1421],["InitialChatFriendsList",[],{"adminedPages":[],"marketplaceThreads":[],"pageListModule":null,"pymmList":[],"recentPageList":[],"groups":[],"list":[],"shortProfiles":{},"nearby":[],"recents":[]},26],["InitialServerTime",[],{"serverTime":1578564348525},204],["PresencePrivacyInitialData",[],{},58],["UFIReactionTypes",[],{"LIKE":1,"ordering":[1,2,13,11,12,4,5,3,10,7,8,14,15],"NONE":0,"reactions":{"1":{"color":"#2078f4","display_name":"J\u2019aime","is_deprecated":false,"is_visible":true,"name":"like","type":1},"2":{"color":"#f33e58","display_name":"J\u2019adore","is_deprecated":false,"is_visible":true,"name":"love","type":2},"13":{"color":"#f0ba15","display_name":"Selfie","is_deprecated":false,"is_visible":false,"name":"selfie","type":13},"11":{"color":"#7e64c4","display_name":"Merci\u00a0!","is_deprecated":false,"is_visible":true,"name":"dorothy","type":11},"12":{"color":"#ec7ebd","display_name":"Pride","is_deprecated":false,"is_visible":true,"name":"toto","type":12},"4":{"color":"#f7b125","display_name":"Haha","is_deprecated":false,"is_visible":true,"name":"haha","type":4},"5":{"color":"#f0ba15","display_name":"G\u00e9nial","is_deprecated":true,"is_visible":false,"name":"yay","type":5},"3":{"color":"#f7b125","display_name":"Wouah","is_deprecated":false,"is_visible":true,"name":"wow","type":3},"10":{"color":"#f0ba15","display_name":"Perplexe","is_deprecated":true,"is_visible":false,"name":"confused","type":10},"7":{"color":"#f7b125","display_name":"Triste","is_deprecated":false,"is_visible":true,"name":"sorry","type":7},"8":{"color":"#e9710f","display_name":"Grrr","is_deprecated":false,"is_visible":true,"name":"anger","type":8},"14":{"color":"#f0ba15","display_name":"R\u00e9agir","is_deprecated":true,"is_visible":false,"name":"flame","type":14},"15":{"color":"#f0ba15","display_name":"R\u00e9agir","is_deprecated":true,"is_visible":false,"name":"plane","type":15}}},911],["GraphQLSubscriptionsConfig",[],{"shouldAlwaysLog":false,"shouldUseGraphQL2DocumentIDs":true},2469],["UFIReactionsKeyframesAssets",[],{"likeAction":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/yg\/r\/DUjm2v1u572.kf","reactions":{"1":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/yd\/r\/nZ5QSEvI6KS.kf","2":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/y1\/r\/X6F3GWesid0.kf","11":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/y6\/r\/BBIgl4s97vo.kf","12":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/y9\/r\/10qgMa0tZwj.kf","4":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/yW\/r\/IejykIRf8Yx.kf","3":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/y9\/r\/dz1J9b1aAtz.kf","7":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/yg\/r\/tJrUgmybuK5.kf","8":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/ya\/r\/QWIJ2IQ3k8w.kf"},"initialProgress":{"4":0.37,"7":0.75}},2625],["WebGraphQLConfig",[],{"timeout":30000,"use_timeout_handler":true,"use_error_handler":true},2809],["VideoPlayerPrefetchExperiments",[],{"maxPrefetchVideosNum":0,"consolidateFragmentedPrefetchRequest":false,"fixPrefetchCacheAbort":true,"disablePrefetchCache":false,"enableGlobalSchedulerForPrefetch":false,"prefetchPriority":1,"switchPrefetchTaskToHighPriWhenPlayed":false},2906],["IntlCompactDecimalNumberFormatConfig",[],{"short_patterns":{"3":{"4":{"min_fraction_digits":null,"min_integer_digits":1,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0K","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0K"},"24":{"min_fraction_digits":null,"min_integer_digits":1,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0K","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0K"}},"4":{"4":{"min_fraction_digits":null,"min_integer_digits":2,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0K","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0K"},"24":{"min_fraction_digits":null,"min_integer_digits":2,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0K","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0K"}},"5":{"4":{"min_fraction_digits":null,"min_integer_digits":3,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0K","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0K"},"24":{"min_fraction_digits":null,"min_integer_digits":3,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0K","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0K"}},"6":{"4":{"min_fraction_digits":null,"min_integer_digits":1,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0M","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0M"},"24":{"min_fraction_digits":null,"min_integer_digits":1,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0M","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0M"}},"7":{"4":{"min_fraction_digits":null,"min_integer_digits":2,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0M","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0M"},"24":{"min_fraction_digits":null,"min_integer_digits":2,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0M","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0M"}},"8":{"4":{"min_fraction_digits":null,"min_integer_digits":3,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0M","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0M"},"24":{"min_fraction_digits":null,"min_integer_digits":3,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0M","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0M"}},"9":{"4":{"min_fraction_digits":null,"min_integer_digits":1,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0Md","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0Md"},"24":{"min_fraction_digits":null,"min_integer_digits":1,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0Md","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0Md"}},"10":{"4":{"min_fraction_digits":null,"min_integer_digits":2,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0Md","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0Md"},"24":{"min_fraction_digits":null,"min_integer_digits":2,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0Md","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0Md"}},"11":{"4":{"min_fraction_digits":null,"min_integer_digits":3,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0Md","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0Md"},"24":{"min_fraction_digits":null,"min_integer_digits":3,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0Md","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0Md"}},"12":{"4":{"min_fraction_digits":null,"min_integer_digits":1,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0Bn","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0Bn"},"24":{"min_fraction_digits":null,"min_integer_digits":1,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0Bn","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0Bn"}},"13":{"4":{"min_fraction_digits":null,"min_integer_digits":2,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0Bn","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0Bn"},"24":{"min_fraction_digits":null,"min_integer_digits":2,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0Bn","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0Bn"}},"14":{"4":{"min_fraction_digits":null,"min_integer_digits":3,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0Bn","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0Bn"},"24":{"min_fraction_digits":null,"min_integer_digits":3,"positive_prefix_pattern":"","positive_suffix_pattern":"\u00a0Bn","negative_prefix_pattern":"-","negative_suffix_pattern":"\u00a0Bn"}}},"long_patterns":{"3":{"4":{"min_fraction_digits":null,"min_integer_digits":1,"positive_prefix_pattern":"","positive_suffix_pattern":" millier","negative_prefix_pattern":"-","negative_suffix_pattern":" millier"},"24":{"min_fraction_digits":null,"min_integer_digits":1,"positive_prefix_pattern":"","positive_suffix_pattern":" mille","negative_prefix_pattern":"-","negative_suffix_pattern":" mille"}},"4":{"4":{"min_fraction_digits":null,"min_integer_digits":2,"positive_prefix_pattern":"","positive_suffix_pattern":" mille","negative_prefix_pattern":"-","negative_suffix_pattern":" mille"},"24":{"min_fraction_digits":null,"min_integer_digits":2,"positive_prefix_pattern":"","positive_suffix_pattern":" mille","negative_prefix_pattern":"-","negative_suffix_pattern":" mille"}},"5":{"4":{"min_fraction_digits":null,"min_integer_digits":3,"positive_prefix_pattern":"","positive_suffix_pattern":" mille","negative_prefix_pattern":"-","negative_suffix_pattern":" mille"},"24":{"min_fraction_digits":null,"min_integer_digits":3,"positive_prefix_pattern":"","positive_suffix_pattern":" mille","negative_prefix_pattern":"-","negative_suffix_pattern":" mille"}},"6":{"4":{"min_fraction_digits":null,"min_integer_digits":1,"positive_prefix_pattern":"","positive_suffix_pattern":" million","negative_prefix_pattern":"-","negative_suffix_pattern":" million"},"24":{"min_fraction_digits":null,"min_integer_digits":1,"positive_prefix_pattern":"","positive_suffix_pattern":" millions","negative_prefix_pattern":"-","negative_suffix_pattern":" millions"}},"7":{"4":{"min_fraction_digits":null,"min_integer_digits":2,"positive_prefix_pattern":"","positive_suffix_pattern":" million","negative_prefix_pattern":"-","negative_suffix_pattern":" million"},"24":{"min_fraction_digits":null,"min_integer_digits":2,"positive_prefix_pattern":"","positive_suffix_pattern":" millions","negative_prefix_pattern":"-","negative_suffix_pattern":" millions"}},"8":{"4":{"min_fraction_digits":null,"min_integer_digits":3,"positive_prefix_pattern":"","positive_suffix_pattern":" million","negative_prefix_pattern":"-","negative_suffix_pattern":" million"},"24":{"min_fraction_digits":null,"min_integer_digits":3,"positive_prefix_pattern":"","positive_suffix_pattern":" millions","negative_prefix_pattern":"-","negative_suffix_pattern":" millions"}},"9":{"4":{"min_fraction_digits":null,"min_integer_digits":1,"positive_prefix_pattern":"","positive_suffix_pattern":" milliard","negative_prefix_pattern":"-","negative_suffix_pattern":" milliard"},"24":{"min_fraction_digits":null,"min_integer_digits":1,"positive_prefix_pattern":"","positive_suffix_pattern":" milliards","negative_prefix_pattern":"-","negative_suffix_pattern":" milliards"}},"10":{"4":{"min_fraction_digits":null,"min_integer_digits":2,"positive_prefix_pattern":"","positive_suffix_pattern":" milliard","negative_prefix_pattern":"-","negative_suffix_pattern":" milliard"},"24":{"min_fraction_digits":null,"min_integer_digits":2,"positive_prefix_pattern":"","positive_suffix_pattern":" milliards","negative_prefix_pattern":"-","negative_suffix_pattern":" milliards"}},"11":{"4":{"min_fraction_digits":null,"min_integer_digits":3,"positive_prefix_pattern":"","positive_suffix_pattern":" milliard","negative_prefix_pattern":"-","negative_suffix_pattern":" milliard"},"24":{"min_fraction_digits":null,"min_integer_digits":3,"positive_prefix_pattern":"","positive_suffix_pattern":" milliards","negative_prefix_pattern":"-","negative_suffix_pattern":" milliards"}},"12":{"4":{"min_fraction_digits":null,"min_integer_digits":1,"positive_prefix_pattern":"","positive_suffix_pattern":" billion","negative_prefix_pattern":"-","negative_suffix_pattern":" billion"},"24":{"min_fraction_digits":null,"min_integer_digits":1,"positive_prefix_pattern":"","positive_suffix_pattern":" billions","negative_prefix_pattern":"-","negative_suffix_pattern":" billions"}},"13":{"4":{"min_fraction_digits":null,"min_integer_digits":2,"positive_prefix_pattern":"","positive_suffix_pattern":" billion","negative_prefix_pattern":"-","negative_suffix_pattern":" billion"},"24":{"min_fraction_digits":null,"min_integer_digits":2,"positive_prefix_pattern":"","positive_suffix_pattern":" billions","negative_prefix_pattern":"-","negative_suffix_pattern":" billions"}},"14":{"4":{"min_fraction_digits":null,"min_integer_digits":3,"positive_prefix_pattern":"","positive_suffix_pattern":" billion","negative_prefix_pattern":"-","negative_suffix_pattern":" billion"},"24":{"min_fraction_digits":null,"min_integer_digits":3,"positive_prefix_pattern":"","positive_suffix_pattern":" billions","negative_prefix_pattern":"-","negative_suffix_pattern":" billions"}}}},2981],["VideoPlayerShakaContextualConfig",[],{"rawContextualConfig":"{\"name\":\"web_video_playback\\\/video_player_shaka_context_sensitive_config_h2_2018_v15\",\"cctype\":\"table\",\"version\":1,\"policy_id\":\"static\",\"sample_rate\":1000,\"contexts\":[{\"name\":\"is_live\",\"modifier\":null,\"type\":\"BOOL\",\"callsite\":true,\"buckets\":[{\"name\":\"false\",\"strategy\":\"same\",\"values\":null},{\"name\":\"true\",\"strategy\":\"same\",\"values\":null}]},{\"name\":\"player_format\",\"modifier\":null,\"type\":\"STRING\",\"callsite\":true,\"buckets\":[{\"name\":\"full_screen\",\"strategy\":\"same\",\"values\":null},{\"name\":\"tahoe\",\"strategy\":\"same\",\"values\":null},{\"name\":\"inline\",\"strategy\":\"same\",\"values\":null},{\"name\":\"any\",\"strategy\":\"regex\",\"values\":[\".*\"]}]},{\"name\":\"is_ad\",\"modifier\":null,\"type\":\"BOOL\",\"callsite\":true,\"buckets\":[{\"name\":\"false\",\"strategy\":\"same\",\"values\":null},{\"name\":\"true\",\"strategy\":\"same\",\"values\":null}]},{\"name\":\"connection_quality\",\"modifier\":null,\"type\":\"STRING\",\"callsite\":true,\"buckets\":[{\"name\":\"POOR\",\"strategy\":\"same\",\"values\":null},{\"name\":\"MODERATE\",\"strategy\":\"same\",\"values\":null},{\"name\":\"GOOD\",\"strategy\":\"same\",\"values\":null},{\"name\":\"EXCELLENT\",\"strategy\":\"same\",\"values\":null}]},{\"name\":\"is_spherical\",\"modifier\":null,\"type\":\"BOOL\",\"callsite\":true,\"buckets\":[{\"name\":\"false\",\"strategy\":\"same\",\"values\":null},{\"name\":\"true\",\"strategy\":\"same\",\"values\":null}]}],\"outputs\":[{\"name\":\"test_param\",\"type\":\"BOOL\"},{\"name\":\"force_lowest_representation_threshold\",\"type\":\"FLOAT\"},{\"name\":\"initial_stream_buffer_size_float\",\"type\":\"FLOAT\"},{\"name\":\"neural_estimate_weight\",\"type\":\"FLOAT\"},{\"name\":\"buffering_overflow_threshold\",\"type\":\"FLOAT\"},{\"name\":\"back_off_buffering_overflow_time_window\",\"type\":\"INT\"},{\"name\":\"back_off_buffering_overflow_max\",\"type\":\"FLOAT\"},{\"name\":\"back_off_buffering_overflow_time_factor\",\"type\":\"FLOAT\"},{\"name\":\"back_off_buffering_overflow\",\"type\":\"BOOL\"},{\"name\":\"max_bandwidth_update_interval\",\"type\":\"INT\"},{\"name\":\"bandwidth_penalty_per_additional_video\",\"type\":\"FLOAT\"},{\"name\":\"bandwidth_penalty_decay_per_video\",\"type\":\"FLOAT\"},{\"name\":\"connection_quality_context_throttle_frequency\",\"type\":\"INT\"},{\"name\":\"bandwidth_upgrade_target\",\"type\":\"FLOAT\"},{\"name\":\"use_buffer_downgrade_threshold\",\"type\":\"BOOL\"},{\"name\":\"buffer_downgrade_threshold\",\"type\":\"FLOAT\"}],\"defaults\":[{\"name\":\"test_param\",\"value\":\"false\"},{\"name\":\"force_lowest_representation_threshold\",\"value\":\"0.0\"},{\"name\":\"initial_stream_buffer_size_float\",\"value\":\"7.5\"},{\"name\":\"neural_estimate_weight\",\"value\":\"0.0\"},{\"name\":\"buffering_overflow_threshold\",\"value\":\"0.0\"},{\"name\":\"back_off_buffering_overflow_time_window\",\"value\":\"2000\"},{\"name\":\"back_off_buffering_overflow_max\",\"value\":\"5.0\"},{\"name\":\"back_off_buffering_overflow_time_factor\",\"value\":\"2.0\"},{\"name\":\"back_off_buffering_overflow\",\"value\":\"false\"},{\"name\":\"max_bandwidth_update_interval\",\"value\":\"0\"},{\"name\":\"bandwidth_penalty_per_additional_video\",\"value\":\"0.1\"},{\"name\":\"bandwidth_penalty_decay_per_video\",\"value\":\"1.0\"},{\"name\":\"connection_quality_context_throttle_frequency\",\"value\":\"1000\"},{\"name\":\"bandwidth_upgrade_target\",\"value\":\"0.9\"},{\"name\":\"use_buffer_downgrade_threshold\",\"value\":\"false\"},{\"name\":\"buffer_downgrade_threshold\",\"value\":\"10.0\"}],\"values\":null,\"table\":[{\"bucket\":\"false, full_screen, false, POOR, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, full_screen, false, POOR, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, full_screen, false, MODERATE, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, full_screen, false, MODERATE, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, full_screen, true, POOR, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, full_screen, true, POOR, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, full_screen, true, MODERATE, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, full_screen, true, MODERATE, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, tahoe, false, POOR, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, tahoe, false, POOR, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, tahoe, false, MODERATE, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, tahoe, false, MODERATE, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, tahoe, true, POOR, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, tahoe, true, POOR, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, tahoe, true, MODERATE, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, tahoe, true, MODERATE, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, inline, false, POOR, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, inline, false, POOR, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, inline, false, MODERATE, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, inline, false, MODERATE, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, inline, true, POOR, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, inline, true, POOR, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, inline, true, MODERATE, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, inline, true, MODERATE, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, any, false, POOR, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, any, false, POOR, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, any, false, MODERATE, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, any, false, MODERATE, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, any, true, POOR, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, any, true, POOR, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, any, true, MODERATE, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"false, any, true, MODERATE, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, full_screen, false, POOR, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, full_screen, false, POOR, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, full_screen, false, MODERATE, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, full_screen, false, MODERATE, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, full_screen, true, POOR, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, full_screen, true, POOR, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, full_screen, true, MODERATE, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, full_screen, true, MODERATE, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, tahoe, false, POOR, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, tahoe, false, POOR, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, tahoe, false, MODERATE, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, tahoe, false, MODERATE, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, tahoe, true, POOR, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, tahoe, true, POOR, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, tahoe, true, MODERATE, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, tahoe, true, MODERATE, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, inline, false, POOR, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, inline, false, POOR, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, inline, false, MODERATE, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, inline, false, MODERATE, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, inline, true, POOR, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, inline, true, POOR, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, inline, true, MODERATE, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, inline, true, MODERATE, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, any, false, POOR, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, any, false, POOR, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, any, false, MODERATE, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, any, false, MODERATE, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, any, true, POOR, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, any, true, POOR, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, any, true, MODERATE, false\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]},{\"bucket\":\"true, any, true, MODERATE, true\",\"values\":[{\"name\":\"buffering_overflow_threshold\",\"value\":\"3.08321475982666\"}]}],\"monitors\":null,\"vector\":null,\"vectorDefaults\":null,\"timestamp\":1530915135}","staticConfig":{"enable_client_side_exposure_logging":false,"stream_buffer_size_float":15,"initial_stream_buffer_size_for_video_stream":0,"switch_from_low_quality":false,"cache_delay":30,"cache_bandwidth":2000000,"first_switch_interval":0,"first_switch_segment_interval":0,"min_switch_interval":5000,"min_eval_interval":1000,"bandwidth_downgrade_target":0.9,"hvq_upgrade_aggressiveness":1,"hvq_inline_upgrade_aggressiveness":1,"pre_hvq_upgrade_aggressiveness":1,"pre_hvq_inline_upgrade_aggressiveness":1,"live_bandwidth_upgrade_target":1,"live_bandwidth_downgrade_target":1,"live_hvq_upgrade_aggressiveness":1,"live_hvq_inline_upgrade_aggressiveness":1,"live_pre_hvq_upgrade_aggressiveness":1,"live_pre_hvq_inline_upgrade_aggressiveness":1,"use_resolution_constraints":true,"resolution_constraint_factor":2,"max_prefetch_request_num":0,"max_prefetch_videos_num":2,"consolidate_fragmented_prefetch_request":false,"min_mpd_refresh_interval":1000,"live_stream_end_timeout":60000,"resolve_video_time_update_on_fragmented_time_ranges":true,"live_interruption_consecutive_updates_without_change":5,"live_interruption_consecutive_updates_with_change":3,"live_send_push_headers":false,"live_initial_stream_buffer_size_float":3.5,"improve_rebuffer_logging":true,"add_cdn_debug_query_parameters":true,"end_buffering_on_playing":false,"live_max_segments_to_push":2,"live_max_manifest_fetches_with_push":1,"enable_video_debug":false,"enable_stats_for_nerds":false,"live_dynamic_stream_buffer_size":12,"reappend_init_segment_after_abort":false,"fix_is_live_interrupted_backtest":false,"use_inline_init_segment":false,"block_autoplay_bandwidth_threshold":123034,"live_block_autoplay_bandwidth_threshold":250000,"current_time_during_ready_state_zero_throws":false,"www_videos_nudge_timestamp_correction_s":0,"www_videos_extended_spl_logging_for_connected_tv":false,"live_abr_send_push_headers":false,"live_abr_initial_push_representation":"live-md-v","live_abr_audio_push_representation":"live-md-a","block_autoplay_allow_preload_settings_change":false,"initial_stream_buffer_size_for_blocked_autoplay":5.9335983320607,"block_autoplay_use_fast_moving_average":true,"live_abr_always_force_representation":false,"jump_to_live_threshold":0.5,"live_data_fetch_max_retries":0,"live_source_buffer_clear_max_retries":0,"use_long_cache_for_manifest":true,"use_mpd_link_preload":false,"use_stream_buffer_size_override":false,"use_native_promise":true,"jump_to_earliest_position_in_current_block":true,"ignore_min_buffer_time":false,"shaka_native_promise":false,"playhead_fragmented_gap_diff_allowance":0.1,"fix_buffering_goal_determination":true,"skip_empty_segments":false,"oz_www_skip_videobuffer_gaps":true,"use_resource_timing_entry_for_bandwidth":false,"force_lower_representation_step_ratio":0,"change_abr_audio_exclusion_logic":true,"sequentially_load_streams":false,"enable_request_pipelining_for_vod":false,"enable_streaming_for_vod":false,"disable_auto_stream_start":true,"enable_streaming_for_live":false,"enable_stream_range_concat":false,"abort_fetch_on_net_error":true,"switch_to_new_stream_when_end_byte_is_null":false,"enable_pausable_stream_resume_from_start":true,"fix_pause_pre_readable_stream":false,"disable_deferred_buffer_array_shift":false,"use_native_promise_in_deferred_buffer":true,"disable_shaka_perf_logger_for_streaming":false,"use_continuous_streaming":false,"streaming_segment_size":4,"streaming_bandwidth_update_interval":180000,"enable_fixed_segment_boundary":false,"enable_streaming_quick_abr_switch":false,"enable_streaming_authentic_fetch_range_query":false,"enable_pausable_range_stream_factory_destroy":false,"disable_streaming_quick_abr_switch_for_low_pri_video":false,"enable_low_pri_multi_segment_fetch":false,"low_pri_task_yield_check_interval":0,"low_pri_task_min_bytes_to_yield":0,"low_pri_task_yields_per_task":0,"enable_audio_streaming":false,"disable_audio_stream_pause":false,"multi_segment_decay":0,"streaming_append_per_segment":3,"enable_segment_based_bandwidth_update":true,"fix_streaming_undefined_end_byte":true,"enable_request_pipelining_for_live":true,"enable_segment_reference_epsilon":false,"remove_trailing_inserted_references":false,"request_pipeline_max_concurrent_requests":2,"request_pipeline_soothing_factor":2,"enable_global_scheduler":true,"enable_streaming_code_path":true,"disable_streaming_scheduler":false,"enable_request_pipelining_for_vod_audios":false,"audio_request_pipeline_max_concurrent_requests":1,"audio_request_pipeline_soothing_factor":1,"global_scheduler_priority_threshold":6,"global_scheduler_priority_downgrade_bufferahead_threshold":0,"priority_precision":1,"disable_streaming_task_cancellation_on_high_pri":false,"live_buffer_critical_threshold":0,"xhr_handle_network_failure":true,"disable_prefetch_cache":false,"enable_rescheduler":false,"skip_old_handler_on_finished_requests":false,"scheduler_priority_update_interval":1000,"update_priority_on_play_event":true,"fixing_scheduler_disable_leaks":true,"fixing_scheduler_xhr_request_leaks":true,"fixing_old_promise_clearance":true,"enable_viewport_priority_adjustment":false,"enable_first_video_priority_adjustment":false,"live_playhead_idle_all_stream_threshold":4,"live_playhead_idle_single_stream_threshold":5,"ignore_errors_after_unload":true,"end_live_playback_with_pause":true,"audio_video_buffer_diff_threshold":14400,"enable_cea608_parsing":true,"update_cea608_availability_on_mpd_parsing":true,"use_pending_seek_position_for_reference":false,"enable_resource_timing_for_prefetch_cache":false,"disable_nudge":false,"fix_buffering_at_the_end_of_playback":true,"fix_ff_in_play_stall_upon_seek":true,"skip_manifest_gap_based_on_stream_limits":true,"skip_manifest_gap_boundary_precision_ms":1000,"buffering_underflow_threshold":0.05,"live_buffering_underflow_threshold":0.5,"ignore_seek_when_nudging":true,"use_local_estimator_for_abr_sampling":true,"start_stream_buffer_size":1,"videos_abr_debugger_storage":false,"buffer_target":-1,"buffer_target_overflow_upgrade_aggressiveness":1,"buffer_target_underflow_upgrade_aggressiveness":1,"use_new_bandwidth_band_logic":true,"min_sample_count":10000,"allow_infinite_retry_on_net_err":true,"fix_shaka_xhr_error_status":true,"remove_ajax_resend_internal":true,"fix_promise_buffer_caches_rejected_promises":true,"allow_autoplay_on_resume_from_sleep":true,"fix_live_stream_gone_on_manifest_update":true,"seek_over_unavailable_segments_on_manifest_update":true,"skip_remaining_buffered_on_stream_end":false,"set_current_time_in_resync":true,"refresh_vod_manifest":false,"fix_manifest_wrapped":true,"clear_old_buffer":false,"fix_prefetch_cache_abort":true,"enable_client_side_abr_logger_sampling":true,"fix_chrome_mse_regression":false,"use_update_segments_by_shaka_reference":true,"live_stream_buffer_size_float":3,"timeouts_persist_on_page_transition":true,"ignore_invalid_timing_entries":false,"clear_buffer_on_constraint_change":false,"emit_live_playhead_idle_from_client":true,"catch_stream_update_sync_code_error":false,"fix_uncaught_promise_error_message":false,"clear_buffer_on_constraint_change_offset":5,"clear_buffer_on_constraint_change_paused_offset":5,"fast_moving_average_half_life":3,"slow_moving_average_half_life":10,"use_dimensions_fallbacks":true,"aggressive_fast_moving_average_half_life":0.0001,"aggressive_slow_moving_average_half_life":9.2335087917745,"fix_reload_promise":false,"ignore_left_button_when_pausing":true,"calculate_quick_dash_presentation_time_offset_from_timeline":false,"calculate_quick_dash_presentation_time_offset_epsilon_ms":250,"listen_for_async_append_buffer_errors":true,"replace_lower_quality_buffer":false,"buffer_replacement_ahead_threshold":15,"buffer_replacement_behind_threshold":5,"rl_model_id":0,"rl_use_short_features":false,"enable_video_watch_time_tracker":false,"rl_use_fallback_for_first_evaluation":false,"rl_block_fetching":false,"rl_use_fallback_evaluation_when_paused":false,"rl_request_timeout":1000,"rl_buffer_timeout":true,"rl_buffer_scale":10,"rl_playback_scale":200000,"rl_bandwidth_scale":1000000,"rl_max_number_of_bitrates":10,"rl_bitrate_reward":1,"rl_watch_time_reward":0,"rl_stall_count_penalty":30,"rl_stall_time_penalty":0,"rl_smc_tier":"repomen_1","enable_reinforcement_learning":false,"enable_reinforcement_learning_on_360":false,"disable_360_abr":false,"max_recent_bandwidth_samples":25,"use_per_video_bandwidth_estimator":false,"use_minimum_of_global_and_local_bandwidth_estimates":false,"minimum_weight_to_trust_local_bandwidth_estimate":0.5,"make_early_track_selection":false,"process_deferred_switches_early":false,"use_local_bitrate":false,"local_bitrate_segments_ahead":10,"disable_block_play_request_http_status_list":false,"start_local_bitrate_at_buffer_end":false,"wrap_replacement_past_end":false,"nuke_source_buffer_on_quota_exceeded_err":true,"sbm_enable_concurrent_fetch_requests":false,"prevent_fetch_while_fetching_in_stream":false,"enable_clean_failover_uri_on_mpd_requests":true,"decouple_mpd_update_loop_from_request_loop":false,"refresh_segment_reference_failover_uri":true,"decouple_stream_on_update_loop_from_request_loop_int":0,"fix_network_interrupted_start_not_nulled":false,"enable_spinner_on_network_interrupted":false,"fix_shaka_util_ajax_request_abort":true,"clear_buffer_on_seek_back":false,"clear_buffer_on_seek_back_delta":0,"max_network_interrupted_time_before_seek":10000,"refresh_bandwidth_from_live_manifest":false,"use_strict_track_dimensions_exclusion_logic":false,"resolution_constraint_max_width":0,"resolution_constraint_max_height":0,"log_player_dimensions":true,"add_inline_initialization_resources":false,"use_buffer_target_only_after_buffering_goal_is_hit":false,"enable_content_protection":true,"disable_logging_for_long_loops":false,"logging_log_event_limit":1000,"drop_buffering_detection_from_html5_api":true,"prevent_playing_on_insufficient_buffer":true,"unify_stream_start_with_buffer_detector":true,"exclude_tracks_without_smooth_playback":false,"mpd_parse_frame_and_audio_sampling_rate":false,"no_skip_gaps_on_buffering":false,"no_skip_gaps_on_seek_range_changed":false,"skip_manifest_gaps_use_cached_stream_limits":false,"fix_shaka_player_load_race_condition":false,"use_on_demand_livehead_catchup":false,"prevent_stream_start_if_streams_change":true,"use_live_bitrate_estimates":true,"live_bitrate_estimates_half_life":1,"live_bitrate_estimates_minimum_sample_count":1,"live_bitrate_estimates_large_sample_weight_factor":10,"no_skip_manifest_gaps_if_live":false,"abort_loading_decisioning_logic":false,"defer_which_video_to_abort_loading_decisioning_logic":"all","buffer_velocity_time_in_past_to_consider":0,"use_low_buffer_velocity_abr_interval":false,"low_buffer_velocity_abr_interval":500,"low_buffer_velocity_threshold":0,"low_buffer_velocity_abr_interval_buffer_threshold":10,"test_source_buffers_not_updating_end_of_stream":true,"log_connection_quality":true,"mpd_parse_mos_attributes":true,"abort_loading_live_head_as_current_time":false,"abort_loading_delay":3000,"exclude_tracks_with_expensive_mos":false,"maximum_mos_to_decrease":3,"maximum_bandwidth_bitrate_ratio":1.5,"use_max_local_bitrate":false,"fix_seek_range_gap_boundary":true,"minimum_samples_to_use_neural_estimate":1,"evaluate_abr_on_fetch_end":false,"evaluate_abr_on_stream_bandwidth_sample":true,"ignore_recent_bandwidth_eval_on_fetch_end":false,"enable_autoscroll_into_view":true,"pending_seek_while_playing":false,"pending_seek_while_playing_delay":2000,"pending_seek_while_playing_offset_from_livehead":4000,"multiple_videos_queue_penalty_start_count":2,"enable_stream_progress_tracker":false,"abr_switch_after_stream_completes":false,"sample_prefetch_bandwidth":false,"fix_fixed_size_transform_on_null_end_byte":true,"abr_abort_when_fetch_estimate_exceeds_buffer_factor":0,"abr_abort_when_fetch_estimate_exceeds_time":0,"abr_abort_only_on_downgrade":false,"overwrite_video_current_time_property":false,"updates_priority_on_fetch_complete":false,"continuous_stream_on_higher_priority":false,"buffering_count_threshold":5,"low_start_stream_buffer_size":2.5,"low_bandwidth_start_stream_buffer_size_threshold":2000000,"scheduled_videos_start_stream_buffer_size_threshold":0,"abr_abort_on_zero_stream_progress_below_threshold":-1,"abr_abort_without_stream_progress":false,"end_all_streams_on_410":true,"minimum_sample_count_to_use_new_estimator":0,"minimum_sample_count_to_use_deviation_penalty":2,"new_estimator_half_life":5,"new_estimator_standard_deviation_exclusion_factor":2,"bandwidth_standard_deviation_penalty_factor":0.1,"live_stream_end_slack":0.5,"allow_seek_logging_in_mixin":false,"fix_pause_current_time_in_mixin":false,"fix_unstall_buffer_calculation":false,"disable_min_quality":false,"fix_initial_stream_id_logging":false,"use_progress_spinner":false,"better_set_current_time_in_resync":false,"resync_set_current_time_fudge_factor":0,"prevent_representation_ended_when_paused":true,"prevent_representation_ended_when_seeking":false,"use_two_frequency_update_autoplay":false,"autoplay_use_unthrottled_scroll_handler":false,"request_bounded_animation_frame_bound":50,"autoplay_start_video_interval":200,"treat_live_static_manifest_as_dynamic":true,"disable_append_window_end":false,"append_window_end_fudge_factor":0,"live_jump_to_pushed_segment":false,"detect_live_stream_ended_from_response_headers":true,"update_autoplay_no_high_frequency_ops":false,"frame_drop_penalty_minimum_frame_count":0,"frame_drop_penalty_factor":0,"live_rewind_templated_last_x_segments_only":0,"update_autoplay_lower_raf_cycle":false,"use_binary_search_when_finding_segment_references":false,"override_fb_is_live_templated":false,"no_correct_delta_warning":false,"no_seek_range_gaps_during_compute_stream_limits":false,"ignore_segment_index_updates_when_debug_overlay_hidden":false,"no_retry_on_502_503":false,"use_timeline_segment_index":false,"timeline_segment_index_max_index_cache_length":0,"optimize_stream_get_segments_calls":false,"clear_current_segment_indexes_during_livehead_catchup":false,"request_pipeline_timeout_ms":0,"enable_spl_when_unsampled":false,"shaka_default_ajax_request_timeout_ms":0,"shaka_default_request_timeout_timescale":1000,"skip_segment_request_manager":false,"segment_update_helper_splice_path_entity_key":"","enable_recursive_raf":false,"enable_recursive_ric":false,"enable_recursive_native_raf":false,"enable_recursive_native_ric":false,"estimator_override_cache_exclusion":false,"update_autoplay_no_raf":false,"no_provide_segments_to_on_segments_updated_listeners":false,"autoplay_controller_use_video_scroll_tracker":false,"recursive_ric_timeout":-1,"retry_egress_500s":false,"recursive_native_settimeout_delay":-1,"enable_lazy_livehead_catchup":false,"stream_maximum_onpause_buffer_size_multiplier":0,"enable_main_thread_availability_logging":false,"fallback_on_videosource_load_410_error":false,"main_thread_blocked_event_threshold":200,"use_ric_cycle":false,"ric_autoplay_bound":50,"use_native_ric":false,"use_settimeout_for_main_thread_available":false,"settimeout_polling_delay":-1,"fix_time_point_boundary_gap_expansion":false,"find_last_inserted_segment_in_segment_index":false,"create_own_segment_reference_for_sbm":false,"enable_client_side_prefetch_decision":false,"client_prefetch_bandwidth_aggressiveness":1,"sbm_use_segment_index_to_find_timestamps":false,"integrate_segment_timeline_time_points":false,"fbls_use_timeline_segment_index":false,"fix_integration_on_earlier_endtime":false,"optimize_common_segment_generations":false,"non_iterative_segments_api_calls":false,"enable_spl_after_submitted_playback_issue":false,"fix_overwritten_get_video_current_time":false,"num_predictive_segments":0,"oz_www_num_predictive_segments":0,"oz_www_generate_mos_segment_appended_secs":false,"oz_www_replace_tb_with_sb":false,"oz_www_enable_predictive_dash":false,"oz_www_use_sc_timebased_segments":false,"oz_www_touch_cb_key":false,"is_low_latency":false,"fire_seek_events":false,"fix_composited_time_index_calls":false,"templated_test_last_time_point_first":false,"use_float_epsilon_comparator_in_binary_search":false,"templated_faster_start_index_finds":false,"disable_live_stream_state":false,"robust_count_changes":false,"stream_onupdate_sampling":0,"templated_faster_stream_get_next_n":false,"templated_jump_to_live_sidx_end_offset":0,"templated_last_x_timeline":false,"templated_always_jump_to_stream_limits_end":false,"templated_ingest_throttle":0,"templated_adjust_stream_limits_start_offset":0,"templated_adjust_stream_limits_start_offset_int":0,"templated_optimize_merge_target_algos":false,"templated_quarantine_idle_references_threshold":0,"live_predictive_abr_up_buffer":9000,"live_predictive_abr_down_buffer":5000,"live_predictive_abr_up_retry_interval":30000,"live_predictive_abr_ttfb_ratio":1.8,"live_predictive_abr_floor_ttfb_ratio":5,"live_predictive_abr_floor_swich_lanes":-2,"live_predictive_abr_bandwidth_fallback":false,"shaka_buffer_abr":false,"evaluate_abr_on_tracks_and_bandwidth_change":true,"calculate_missed_segment_gap_info_on_merge":false,"buffering_spinner_delay_ms":0,"templated_use_perf_test_segment_index_base_int":0,"templated_update_srm_by_delta_of_changed_references_bool":false,"templated_perf_test_methods_under_test_csv_string":"all","templated_call_on_segments_updated_with_delta_segments":false,"enable_double_ingest":false,"enable_double_ingest_on_initial_mpd":false,"www_shaka_clear_media_keys_on_unload":false,"www_videos_playback_remove_src_attr_on_unload":false,"templated_chunked_segment_update_limit_int":0,"srm_fix_update_helper_insert_loop":false,"templated_dynamic_include_previous_last_segment_in_updates":false,"has_live_rewind_egress":false,"has_live_rewind_ui_www":true,"feature_param":"","use_oz_with_fbms_eligible":false,"enable_autoplay_controller_for_watch_party_feed_attachment":false,"create_restore_abort_loading_promise":false,"do_not_emit_become_visibility_events_on_vpc":false,"fix_living_room_video_player_psr_logging":false,"living_room_allow_dash_prefetch":false,"living_room_optimize_raw_video_data_requests":false,"living_room_playhead_catchup_interval":0,"living_room_terminate_livehead_catchup_on_start":false,"living_room_catchup_only_in_feed":false,"living_room_log_initial_video_play":false,"living_room_play_x_milliseconds_before_seek":0,"living_room_disable_play_without_playing":false,"living_room_no_delayed_seek_if_paused":false,"enable_p2p_support":true,"fix_end_buffering_on_unload":false,"shaka_update_bandwidth_cache_on_sample":false,"set_pending_seek_on_set_current_time_failure":false,"living_room_convert_ready_state_to_playing_on_seek":false,"pause_videos_on_backgrounded":false,"oz_www_fix_representation_ended_timing":false,"oz_www_safely_log_player_seeks":false,"oz_www_enable_adaptation":true,"oz_www_fix_quick_starter_overhead":false,"oz_www_use_oz_loop_driver":true,"oz_www_switch_to_existing_representation":false,"oz_www_abr_restrict_from_index":0,"oz_www_abr_restrict_to_index":0,"oz_www_initial_switch_interval":0,"oz_www_min_switch_interval":5000,"oz_www_abr_min_bandwidth_samples":3,"oz_www_min_eval_interval":1000,"oz_www_bandwidth_estimator_half_life":6,"oz_www_bandwidth_estimator_variance_penalty_half_life":0,"oz_www_bandwidth_estimator_variance_penalty_down_factor":0,"oz_www_bandwidth_estimator_variance_penalty_up_factor":0,"oz_www_bandwidth_estimator_outlier_exclusion_factor":50,"oz_www_bandwidth_estimator_std_dev_penalty_factor":0,"oz_www_abr_confidence_threshold":0.9,"oz_www_segments_to_stream":5,"oz_www_per_stream_duration_target":0,"oz_www_segments_to_stream_under_playhead_threshold":0,"oz_www_low_segment_stream_playhead_threshold":0,"oz_www_appends_per_segment":3,"oz_www_append_byte_target_without_range":0,"oz_www_log_appended_secs":false,"oz_www_lazy_parse_sidx":false,"oz_www_use_native_promise":true,"oz_www_abr_eval_buffer_threshold":0,"oz_www_throttle_playback_rate_on_stall":false,"oz_www_use_prefetch_cache":true,"oz_www_force_initial_representation":true,"oz_www_buffer_ahead_target":19,"oz_www_low_buffer_bandwidth_target_threshold":10,"oz_www_low_buffer_bandwidth_target_increase_factor":0,"oz_www_segments_to_stream_near_bandwidth_boundary":5,"oz_www_bandwidth_boundary_standard_deviation_factor":1,"oz_www_suppress_playing_event_while_buffering":false,"oz_www_resolution_constraint_factor":2,"oz_www_pre_start_buffer_ahead_target":17,"oz_www_in_play_buffer_underflow_target":0.1,"oz_www_in_play_buffer_overflow_target":1,"oz_www_buffer_when_waiting":false,"oz_www_start_buffer_underflow_target":0.1,"oz_www_byte_count_per_sample":60000,"oz_www_minimum_bytes_to_sample_on_close":50000,"oz_www_exclude_prefetch_bandwidth_samples":true,"oz_www_connection_quality_context_throttle_frequency":2000,"oz_www_paused_stream_segments_count":2,"oz_www_minimum_bandwidth_sample_duration":30,"oz_www_maximum_bandwidth_sample_bandwidth":2000000,"oz_www_max_bandwidth_sample_count":30,"oz_www_use_performance_entry_on_stream_close":false,"oz_www_ignore_time_to_response_start":false,"oz_www_bandwidth_ignore_on_stream_write_samples":false,"oz_www_bandwidth_use_response_time_adjustment":false,"oz_www_use_scheduler":true,"oz_www_disable_audio_scheduler":false,"oz_www_no_new_loop_body_promise_when_stream_ongoing":false,"oz_www_clear_buffer_on_user_quality_upgrade":false,"oz_www_fix_seek_performance":false,"oz_www_enable_network_manager_error":false,"oz_www_parse_first_segment":false,"oz_www_enable_abr_for_first_request":false,"oz_www_update_media_source_duration":true,"oz_www_sbm_waits_for_update_end":true,"oz_www_sbm_recursively_waits_for_update_end":false,"oz_www_playhead_nudge_slack":0,"oz_www_auto_seek_playhead_slack":0,"oz_www_seek_ahead_epsilon":0,"oz_www_seek_ahead_use_native_current_time":false,"oz_www_timeline_offset_threshold":0,"oz_www_live_rewind_seek_to_live_delta":8,"oz_www_update_seekable_range":false,"oz_www_update_duration_when_init_appended":false,"oz_www_abr_prevent_down_switch_buffer_threshold":0,"oz_www_check_buffer_range_once_for_playhead_update":false,"oz_www_fix_start_timestamp":false,"oz_www_emit_cea_608_availability":false,"oz_www_parse_cea_608":false,"oz_www_use_new_template_segment_parser":false,"oz_www_fix_templated_manifest_r_field_check":false,"oz_www_update_duration_if_mpd_synchronously_has_timeline_info":false,"oz_www_fix_abr_default_representation":false,"oz_www_live_initial_playback_position":0,"oz_www_live_query_time_in_range":false,"oz_www_livehead_fall_behind_block_threshold":0,"oz_www_live_time_range_block_margin":0,"oz_www_live_block_time_range_on_the_fly":false,"oz_www_compute_buffer_ahead_with_timeline_gaps":false,"oz_www_live_gracefully_handle_mpd_errors":false,"oz_www_live_no_segment_when_playhead_is_before_first_segment":false,"oz_www_live_disable_mpd_updates_when_paused":false,"oz_www_cleanup_video_node_on_destroy":false,"oz_www_detach_media_source_manager":false,"oz_www_enable_abortload_and_reload":false,"oz_www_live_playhead_catch_up":false,"oz_www_live_catch_up_only_when_paused":false,"oz_www_live_catch_up_fall_behind_threshold":20,"oz_www_live_catch_up_live_head_delta":6,"oz_www_live_numerical_error_epsilon":0.0001,"oz_www_live_find_next_segment_with_gap":true,"oz_www_live_segment_search_from_end":true,"oz_www_stop_manifest_update_when_static":true,"oz_www_request_stream_throws_oz_network_error":true,"oz_www_buffer_end_only_when_buffering":false,"oz_www_stream_interrupt_check_mpd_stale_count_threshold":0,"oz_www_reach_end_only_when_video_ended":false,"oz_www_allow_queueing_end_of_stream_when_update":false,"oz_www_set_source_buffer_append_window_end":false,"oz_www_keep_anchor_when_seeking_into_same_buffer":false,"oz_www_use_stream_end_time_in_segment_locator":false,"oz_www_pausable_stream_throws_error_when_aborted":false,"oz_www_network_retry_intervals_json":"{\"0\": 1000, \"404\": 2000, \"502\": 1000, \"503\": 1000, \"504\": 1000}","oz_www_network_end_broadcasts_json":"[]","oz_www_network_skip_json":"[]","oz_www_network_reload_mpd_json":"[]","oz_www_fallback_on_append_error":false,"oz_www_enable_appends_on_wait_update_end_failure":false,"oz_www_bandwidth_penalty_per_additional_video":0,"oz_www_bandwidth_penalty_additional_video_start":0,"oz_www_prefetch_cache_bandwidth_upper_limit":0,"oz_www_retry_error_during_stream":false,"oz_www_throw_network_error_during_stream":false,"oz_www_retry_fetch_on_prefetch_error":false,"oz_www_use_abr_for_missing_default_representation":false,"oz_www_check_best_representation_only_when_fetching":false,"oz_www_initial_manifest_request_retry_count":0,"oz_www_use_oz_abr_manager_refactor":false,"oz_www_download_time_buffer_delta_penalty_factor":0,"oz_www_time_to_first_byte_estimate_half_life_ms":500,"oz_www_handle_missing_manifest_segment_timeline":false,"oz_www_fix_live_video_duration_buffering":false,"oz_www_end_all_streams_on_stream_gone":false,"oz_www_end_buffered_streams_on_transition_to_static":false,"oz_www_mos_upper_threshold":0,"oz_www_mos_lower_threshold":0,"oz_www_keep_lowest_mos_above_upper_thresold":false,"oz_www_abr_use_download_time":false,"oz_www_minimum_download_additional_buffer_ms":0,"oz_www_switch_when_getting_segments":false,"oz_www_use_deferred_streaming_task":false,"oz_www_use_repomen_abr":false,"oz_www_bandwidth_abr_ratio":1,"oz_www_bandwidth_abr_bias":0,"oz_www_buffer_abr_ratio":1,"oz_www_buffer_abr_bias":0,"oz_www_allow_abort_loading_from_autoplay_controller":false,"oz_www_cleanup_buffering_detector_on_unload":false,"oz_www_cleanup_all_ozplayer_subscriptions":false,"oz_www_enable_double_ingest":false,"oz_www_listen_for_quick_starter_errors":false,"oz_www_use_oz_credentials_provider":false,"oz_www_throw_on_non_zero_r_d_mismatch":false,"oz_www_fix_template_duration_artifact_in_manifest":false,"oz_www_bandwidth_cache_key":"bandwidthEstimate","oz_www_estimate_video_bandwidth_only":false,"oz_www_default_bandwidth_estimate":500000,"oz_www_update_bandwidth_cache_on_sample":false,"oz_www_exclude_sidx_from_bandwidth_estimates":false,"oz_www_live_audio_ibr":true,"oz_www_live_audio_ibr_bandwidth_percentage":0.05,"comet_www_no_pause_on_blur_or_focus_events":false,"oz_www_live_gracefully_handle_no_network":false,"oz_www_live_max_try_attempts_on_404":1,"oz_www_clear_buffer_when_switch_representation_initiator_is_user":false,"use_smart_buffering":false,"buffer_size_00_to_03":5,"buffer_size_03_to_10":15,"buffer_size_10_to_30":30,"buffer_size_30_to_60":600,"buffer_size_above_60":600,"non_smart_buffer_size":15,"live_default_stream_end_offset":3,"block_play_request_http_status_list":"410"}},3038],["QuickLogConfig",[],{"qpl_events":{"393276":{"sampleRate":50},"655575":{"sampleRate":1},"655576":{"sampleRate":5000},"655584":{"sampleRate":1},"2097243":{"sampleRate":250},"2097246":{"sampleRate":1},"3473463":{"sampleRate":1},"3473464":{"sampleRate":1},"3473465":{"sampleRate":1},"3473471":{"sampleRate":10000},"3735589":{"sampleRate":100},"3735590":{"sampleRate":1000},"3735591":{"sampleRate":100},"3735592":{"sampleRate":1000},"3735593":{"sampleRate":1000},"3735594":{"sampleRate":1000},"3735595":{"sampleRate":100},"3735596":{"sampleRate":1000},"3735597":{"sampleRate":1000},"3735598":{"sampleRate":100},"3735599":{"sampleRate":1000},"3735600":{"sampleRate":100},"3735601":{"sampleRate":100},"3735602":{"sampleRate":10000},"3735603":{"sampleRate":10000},"3735604":{"sampleRate":100},"3735605":{"sampleRate":100},"3735606":{"sampleRate":1},"3735608":{"sampleRate":250},"3735609":{"sampleRate":250},"3735610":{"sampleRate":250},"3735611":{"sampleRate":250},"3735612":{"sampleRate":250},"3735613":{"sampleRate":250},"3735614":{"sampleRate":250},"3735615":{"sampleRate":250},"3735616":{"sampleRate":250},"3735617":{"sampleRate":250},"3735618":{"sampleRate":50},"3735619":{"sampleRate":50},"3735620":{"sampleRate":50},"3735621":{"sampleRate":50},"3735622":{"sampleRate":50},"3735623":{"sampleRate":500},"3735624":{"sampleRate":500},"3735625":{"sampleRate":1},"3735626":{"sampleRate":50},"3735627":{"sampleRate":50},"7733271":{"sampleRate":1},"7995396":{"sampleRate":100},"7995398":{"sampleRate":100},"7995399":{"sampleRate":100},"7995400":{"sampleRate":1},"7995401":{"sampleRate":1},"7995402":{"sampleRate":1},"7995403":{"sampleRate":100},"7995404":{"sampleRate":100},"7995408":{"sampleRate":100},"7995409":{"sampleRate":100},"7995411":{"sampleRate":100},"11075606":{"sampleRate":100},"11075649":{"sampleRate":1},"11075654":{"sampleRate":1},"11075666":{"sampleRate":100},"11075668":{"sampleRate":1},"11075669":{"sampleRate":1},"11075674":{"sampleRate":1},"12451850":{"sampleRate":4},"12451853":{"sampleRate":10000},"12451854":{"sampleRate":1},"12451859":{"sampleRate":1},"13238313":{"sampleRate":100},"13238314":{"sampleRate":100},"13238353":{"sampleRate":100},"13238354":{"sampleRate":100},"13238355":{"sampleRate":100},"13238356":{"sampleRate":100},"13238357":{"sampleRate":100},"13238392":{"sampleRate":100},"14549005":{"sampleRate":10000},"17825794":{"sampleRate":250},"19202053":{"sampleRate":100},"19202056":{"sampleRate":10},"19202071":{"sampleRate":10},"19202072":{"sampleRate":10},"19202081":{"sampleRate":100},"22347782":{"sampleRate":100},"23265284":{"sampleRate":1},"23265285":{"sampleRate":1},"23265286":{"sampleRate":1},"23855105":{"sampleRate":1},"23855106":{"sampleRate":1},"23855107":{"sampleRate":1},"23855108":{"sampleRate":1},"23855109":{"sampleRate":1},"23855113":{"sampleRate":1},"25296897":{"sampleRate":1},"25296900":{"sampleRate":10000},"25296901":{"sampleRate":1},"25296902":{"sampleRate":1},"25296903":{"sampleRate":10000},"25296904":{"sampleRate":10000},"25296905":{"sampleRate":10000},"25296906":{"sampleRate":10000},"25493505":{"sampleRate":10000},"25493506":{"sampleRate":10000},"25952266":{"sampleRate":1},"26869761":{"sampleRate":1},"26869762":{"sampleRate":1},"26869763":{"sampleRate":1},"26869764":{"sampleRate":1},"26869765":{"sampleRate":1},"26869766":{"sampleRate":1},"27459588":{"sampleRate":5000},"27459589":{"sampleRate":1},"27459590":{"sampleRate":10},"27459591":{"sampleRate":1},"27787270":{"sampleRate":1},"27983873":{"sampleRate":1},"27983874":{"sampleRate":1},"27983875":{"sampleRate":1},"27983876":{"sampleRate":1},"27983877":{"sampleRate":1},"28770305":{"sampleRate":1},"29294593":{"sampleRate":1},"29818881":{"sampleRate":1},"29818882":{"sampleRate":1},"29818883":{"sampleRate":1},"29818884":{"sampleRate":1},"29884423":{"sampleRate":10},"29949953":{"sampleRate":1},"29949954":{"sampleRate":1},"29949955":{"sampleRate":1},"30408705":{"sampleRate":1},"30408706":{"sampleRate":1},"30408707":{"sampleRate":1},"30408708":{"sampleRate":1},"30408709":{"sampleRate":1},"30408710":{"sampleRate":1},"30408711":{"sampleRate":1},"30408712":{"sampleRate":1},"30605313":{"sampleRate":1},"30605314":{"sampleRate":1},"30605315":{"sampleRate":1},"30605316":{"sampleRate":1},"30605317":{"sampleRate":1},"30605319":{"sampleRate":1},"30605320":{"sampleRate":1},"30605321":{"sampleRate":1},"30605322":{"sampleRate":1},"30605323":{"sampleRate":1},"30605324":{"sampleRate":1},"30605325":{"sampleRate":1},"30605326":{"sampleRate":1},"30605328":{"sampleRate":1},"30605329":{"sampleRate":1},"30605330":{"sampleRate":1},"30605331":{"sampleRate":1},"30605332":{"sampleRate":1},"30605333":{"sampleRate":1},"30605334":{"sampleRate":1},"30605335":{"sampleRate":1},"30605336":{"sampleRate":1},"30605337":{"sampleRate":1},"30605338":{"sampleRate":1},"30605339":{"sampleRate":1},"30605340":{"sampleRate":1},"30605341":{"sampleRate":1},"30605342":{"sampleRate":1},"30605343":{"sampleRate":1},"30605344":{"sampleRate":1},"30605345":{"sampleRate":1},"30605346":{"sampleRate":1},"30605347":{"sampleRate":1},"30605348":{"sampleRate":1},"30605349":{"sampleRate":1},"30605350":{"sampleRate":1},"30605351":{"sampleRate":1},"30605352":{"sampleRate":1},"30605353":{"sampleRate":1},"30605354":{"sampleRate":1},"30605355":{"sampleRate":1},"30605356":{"sampleRate":1},"30605357":{"sampleRate":1},"30605358":{"sampleRate":1},"30605360":{"sampleRate":1},"30605361":{"sampleRate":1},"30605362":{"sampleRate":1},"30605363":{"sampleRate":1},"30605364":{"sampleRate":1},"30605365":{"sampleRate":1},"30605366":{"sampleRate":1},"30605367":{"sampleRate":1},"30605368":{"sampleRate":1},"30605369":{"sampleRate":1},"30605370":{"sampleRate":1},"30605371":{"sampleRate":1},"30605373":{"sampleRate":1},"30605374":{"sampleRate":1},"30605375":{"sampleRate":1},"30605376":{"sampleRate":1},"30605377":{"sampleRate":1},"30605378":{"sampleRate":1},"30605380":{"sampleRate":1},"30605381":{"sampleRate":1},"30605382":{"sampleRate":1},"30605383":{"sampleRate":1},"30605384":{"sampleRate":1},"30605385":{"sampleRate":1},"30605386":{"sampleRate":1},"30605387":{"sampleRate":1},"32374785":{"sampleRate":10000},"32702465":{"sampleRate":1},"33619969":{"sampleRate":1},"33751042":{"sampleRate":1},"33751043":{"sampleRate":1},"33751044":{"sampleRate":1},"33751045":{"sampleRate":1},"33751046":{"sampleRate":1},"33751047":{"sampleRate":1},"33751048":{"sampleRate":1},"33751049":{"sampleRate":1},"35586050":{"sampleRate":1000},"35586051":{"sampleRate":10},"35586052":{"sampleRate":1000},"35586053":{"sampleRate":1000},"35651585":{"sampleRate":1},"35651586":{"sampleRate":1},"35651587":{"sampleRate":1},"35651588":{"sampleRate":1},"35651589":{"sampleRate":1},"35651590":{"sampleRate":1},"35651591":{"sampleRate":1},"35651592":{"sampleRate":1},"35651593":{"sampleRate":1},"35651594":{"sampleRate":1},"35651595":{"sampleRate":1},"35651596":{"sampleRate":1},"35651597":{"sampleRate":1},"35651598":{"sampleRate":1},"35651599":{"sampleRate":1},"35651600":{"sampleRate":1},"35651601":{"sampleRate":1},"36110337":{"sampleRate":1},"36110338":{"sampleRate":1},"36110339":{"sampleRate":1},"36241413":{"sampleRate":1},"36241422":{"sampleRate":1},"36241423":{"sampleRate":1},"36306945":{"sampleRate":1},"36306946":{"sampleRate":1},"36306948":{"sampleRate":1},"36306951":{"sampleRate":1000},"36306952":{"sampleRate":1},"36306953":{"sampleRate":1},"37093377":{"sampleRate":10000},"37158913":{"sampleRate":1},"37158914":{"sampleRate":1},"37158915":{"sampleRate":1},"37158916":{"sampleRate":1},"37224449":{"sampleRate":10000},"37224450":{"sampleRate":10000},"37224451":{"sampleRate":10000},"37224452":{"sampleRate":10000},"37224453":{"sampleRate":10000},"37224454":{"sampleRate":10000},"37224455":{"sampleRate":10000},"37224456":{"sampleRate":10000},"37224457":{"sampleRate":10000},"37289985":{"sampleRate":1},"37289986":{"sampleRate":1},"37289987":{"sampleRate":1},"37289988":{"sampleRate":1},"37289989":{"sampleRate":1},"37289990":{"sampleRate":1},"37289991":{"sampleRate":1},"37289992":{"sampleRate":1},"37814273":{"sampleRate":1},"37814274":{"sampleRate":1},"37814275":{"sampleRate":1},"38338561":{"sampleRate":1},"38338562":{"sampleRate":1},"38338563":{"sampleRate":1},"38338564":{"sampleRate":1},"38928385":{"sampleRate":1},"39976961":{"sampleRate":1},"39976962":{"sampleRate":1},"39976964":{"sampleRate":1},"39976965":{"sampleRate":1},"40108033":{"sampleRate":1},"40304641":{"sampleRate":10000},"40501249":{"sampleRate":1},"40501250":{"sampleRate":1},"40501251":{"sampleRate":1},"40501252":{"sampleRate":1},"40828929":{"sampleRate":1},"40828930":{"sampleRate":1},"40828931":{"sampleRate":1},"40828932":{"sampleRate":1},"40828933":{"sampleRate":1},"40828934":{"sampleRate":1},"40828935":{"sampleRate":1},"40828936":{"sampleRate":1},"40894465":{"sampleRate":1},"40894466":{"sampleRate":1},"40894467":{"sampleRate":1},"40894468":{"sampleRate":1},"40894469":{"sampleRate":1},"40894470":{"sampleRate":1},"40894471":{"sampleRate":1},"40894472":{"sampleRate":1},"40894473":{"sampleRate":1},"40894474":{"sampleRate":1},"40894475":{"sampleRate":1},"40894476":{"sampleRate":1},"40894477":{"sampleRate":1},"40894478":{"sampleRate":1},"40894479":{"sampleRate":1},"40894480":{"sampleRate":1},"40894481":{"sampleRate":1},"40894482":{"sampleRate":1},"40894483":{"sampleRate":1},"40894484":{"sampleRate":1},"40894485":{"sampleRate":1},"40894486":{"sampleRate":1},"40894487":{"sampleRate":1},"40894488":{"sampleRate":1},"40894489":{"sampleRate":1},"40894490":{"sampleRate":1},"40894491":{"sampleRate":1},"41484289":{"sampleRate":10},"41484290":{"sampleRate":100},"41484291":{"sampleRate":100},"41484293":{"sampleRate":100},"41484294":{"sampleRate":200},"41484295":{"sampleRate":100},"41484296":{"sampleRate":100},"41484297":{"sampleRate":100},"41484298":{"sampleRate":100},"41484299":{"sampleRate":100},"41484300":{"sampleRate":100},"41484301":{"sampleRate":1},"41484302":{"sampleRate":100},"41484303":{"sampleRate":100},"41484304":{"sampleRate":100},"41484305":{"sampleRate":100},"41811969":{"sampleRate":1},"41811970":{"sampleRate":1},"42532865":{"sampleRate":100},"42532866":{"sampleRate":10000},"42729473":{"sampleRate":1},"42729474":{"sampleRate":1},"42729475":{"sampleRate":1},"42729476":{"sampleRate":1},"43974657":{"sampleRate":1},"44040193":{"sampleRate":1},"44040194":{"sampleRate":1},"44040195":{"sampleRate":1},"44040196":{"sampleRate":1},"44040197":{"sampleRate":1},"44433409":{"sampleRate":1},"44433410":{"sampleRate":1},"44433411":{"sampleRate":1},"44892161":{"sampleRate":1},"44892162":{"sampleRate":1},"44892163":{"sampleRate":1},"44892164":{"sampleRate":1},"44957697":{"sampleRate":100},"44957698":{"sampleRate":1},"44957699":{"sampleRate":1},"44957700":{"sampleRate":100},"44957701":{"sampleRate":1},"44957702":{"sampleRate":1},"45023238":{"sampleRate":10000},"45023239":{"sampleRate":10000},"45023240":{"sampleRate":10000},"45088770":{"sampleRate":1},"45613057":{"sampleRate":1},"45613058":{"sampleRate":1},"45613059":{"sampleRate":1},"45678593":{"sampleRate":1},"46071809":{"sampleRate":1},"46071810":{"sampleRate":1},"46071811":{"sampleRate":1},"46071812":{"sampleRate":1},"46596097":{"sampleRate":1},"46596098":{"sampleRate":1},"47841281":{"sampleRate":1},"47841282":{"sampleRate":1},"47841283":{"sampleRate":1},"48431105":{"sampleRate":10000},"48431106":{"sampleRate":10000},"48496641":{"sampleRate":10000},"48758785":{"sampleRate":10000},"48758786":{"sampleRate":10000},"49283073":{"sampleRate":1},"49283074":{"sampleRate":1},"49283075":{"sampleRate":1},"49479681":{"sampleRate":1},"50135041":{"sampleRate":10000},"50135042":{"sampleRate":10000},"50135043":{"sampleRate":10000},"50135044":{"sampleRate":10000},"50135045":{"sampleRate":10000},"50135046":{"sampleRate":10000},"50135047":{"sampleRate":10000},"50135048":{"sampleRate":10000}},"killswitch":false},3504],["VideoPlayerShakaExperimentsPayload",[],{"experiments":{},"universeToExposureConfig":{}},3538],["WebDevicePerfClassData",[],{"deviceLevel":"unknown"},3665],["CometRelayConfig",[],{"gc_release_buffer_size":50},4685],["CometMaxEnqueuedToastsSitevarConfig",[],{"max":2},4763],["UIGridColumnsConfig",[],{"responsive_rhc_when_narrow":false},2878],["CanvasToBlobResource",[],{"url":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yn\/r\/5q4BHixa_v5.js?_nc_x=Ij3Wp8lg5Kz","name":"CanvasToBlobBundle"},864],["ChannelInitialData",[],{"channelConfig":{"IFRAME_LOAD_TIMEOUT":30000,"P_TIMEOUT":30000,"STREAMING_TIMEOUT":70000,"PROBE_HEARTBEATS_INTERVAL_LOW":1000,"PROBE_HEARTBEATS_INTERVAL_HIGH":3000,"MTOUCH_SEND_CLIENT_ID":1,"user_channel":"p_0","seq":-1,"retry_interval":0,"max_conn":2,"viewerUid":"0","domain":"facebook.com","tryStreaming":false,"trySSEStreaming":false,"skipTimeTravel":false,"uid":"0","sequenceId":null},"state":"reconnect!","reason":6},143],["FantailConfig",["FantailLogQueue"],{"FantailLogQueue":{"__m":"FantailLogQueue"}},1258],["FileHashWorkerResource",[],{"url":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y_\/r\/8F30yS2W6jv.js?_nc_x=Ij3Wp8lg5Kz","name":"FileHashWorkerBundle"},758],["MarauderConfig",[],{"app_version":"1001588497","gk_enabled":false},31],["PresenceInitialData",[],{"cookiePollInterval":500,"cookieVersion":3,"serverTime":"1578564347000","shouldSuppress":false,"useWebStorage":false},57],["SimpleNUXMessageTypesToShow",[],{"mapping":{}},1203],["StreamingReactionsAnimationConfig",[],{"DURATIONS_MS":{"ANON_WIND_INLINE":4250,"ANON_WIND_CHANNEL":5750,"ANON_WIND_SNOWLIFT":5000,"ANON_WIND_TAHOE":6500,"ANON_WIND_MAX_OFFSET":750,"SHOOT_UP":400,"EXPLOSION":500,"EXPLOSION_PAUSE":300,"FIREWORKS":400,"FIREWORKS_ADJUST":60,"PAUSE":1200,"MORPH":300,"MORPH_PAUSE":500,"FRIEND_WIND":2750,"FRIEND_WIND_INLINE":2750,"FRIEND_WIND_CHANNEL":4550,"FRIEND_WIND_SNOWLIFT":4000,"FRIEND_WIND_TAHOE":6500},"OFFSETS_PX":{"NEGATIVE_X":60,"POSITIVE_X":20,"NEGATIVE_Y":10,"POSITIVE_Y":0},"VERTICAL_REACTIONS_OFFSETS_PX":{"NEGATIVE_Y":60,"POSITIVE_Y":20},"SCALES":{"SHOOT_UP":0.45,"MAX_EXPLOSION":1.4,"MIN_MORPH":0.85,"GLOBAL":0.5,"SCALE_MULTIPLIER":0.75},"VERTICAL_REACTION_SCALES":{"HEIGHT_MULTIPLIER":0.5,"HORIZONTAL_ANIMATION_RANGE":20},"CURVES":{"ANON_HORIZONTAL":[0.5,0,1,1],"FRIEND_WIND_HORIZONTAL":[0.39,0.14,1,0.7],"SHOOT_UP_VERTICAL":[0.01,0.82,0.17,1],"EXPLOSION_FIREWORKS_SCALE":[0.175,0.885,0.32,1.275],"EXPLOSION_SCALE":[0.175,0.885,0.32,2],"MORPH_SCALE":[0.175,0.885,0.32,2],"FRIEND_WIND_SCALE":[0,1,0.2,1],"FRIEND_WIND_VACUUM_ZONE_SCALE":[0.25,0,0.6,0.15]},"THROTTLE":{"VIEW_UPDATE_INTERVAL":500,"MAX_REACTIONS_ON_SCREEN":40,"MIN_REACTIONS_TO_SHOW":3,"MAX_REACTIONS_PER_VIEW_UPDATE":15,"REACTION_START_ANIMATION_RATE":200,"REACTION_BUFFER_SIZE":40,"REACTION_CLICK_MUTATION_THRESHOLD":400,"REACTION_CLICK_SELF_FIREWORK_ANIMATION_THRESHOLD":400}},1400],["SystemEventsInitialData",[],{"ORIGINAL_USER_ID":"0"},483],["UFIConfig",[],{"commentVPVD":{"debug_console":false,"debug_html":false,"idle_timeout":5000,"locations":["permalink","newsstand"],"everywhere":true,"min_duration_to_log":100,"min_visible_size":200},"enableCommentListVisibilityTracking":false,"defaultPageSize":50,"renderEmoji":true,"renderEmoticons":true,"shouldShowGIFsInCommentsNux":false,"shouldShowMarkdownCommentNUX":false,"vpvLoggingTimeout":1000,"facecastWWWCommentQueueThreshold":3,"canPublishLive":false,"logChangeOrderingModeUsageSampleRate":1,"logCommentsTimespent":true,"logWhetherUFISeen":false,"showHashtagTypeahead":false,"logCommentPost":false,"logCommentLoad":false,"reactionsHasDirectReactTokens":false,"reactionsHasDirectReactTokensCounts":false,"reactionsDirectReactTokensModule":null,"reactionsFunnelLogger":null,"reactionsHasFunnelLogger":false,"reactionsHasCommentFunnelLogger":false,"reactionsBlingBarFunnelLogger":null,"reactionsHasCommentsNux":false,"reactionsHasTooltipBreakdown":false,"reactionsHasAnimatedIcons":true,"reactionsHasAnimatedLikeActionIcon":false,"reactionsAnimatedIconsUsePackage":true,"reactionsHasSuggestedReaction":false,"reactionsHasReactionsRollback":true,"reactionsHasCommentReactionsRollback":true,"reactionsHasReactionsRetry":true,"reactionsHasCommentReactionsRetry":true,"reactFiberAsyncUFI":false,"showCommentEmbedOption":true,"publicConversationsUnicornWhitelist":false,"maxSubscriptionLiveCommentsQueueLength":10,"sessionID":1,"showChooseLoveAnimation":false,"shouldTranslationsReplaceContent":true,"shouldShowCommentingAsConstituentNUX":false,"showUFICrowdsource":false,"UFICommentFilterFallbackWarning":null,"showCustom":true,"tipJarCommentsNotThrottled":true,"noReactionsAnimations":false,"shouldShowWritingHelp":true},71],["VideoInstreamAdsConstants",[],{"AD_INSERTION_START_TIME_OFFSET_MS":60000,"AD_INSERTION_END_TIME_OFFSET_MS":30000,"AD_INSERTION_INTERVAL_MS":120000,"AD_INSERTION_MINIMUM_VIDEO_LENGTH":180,"AD_INSERTION_MINIMUM_VIDEO_LENGTH_MS":180000,"IS_INSERTION_RULE_V2_LAUNCHED":true,"SHOULD_SHOW_V2_NOTICE":false,"V2_NOTICE_URL":"https:\/\/media.fb.com\/2017\/12\/14\/updates-to-video-distribution-and-monetization\/","AD_INSERTION_START_TIME_OFFSET_MIN_FOR_NOTICE":1,"AD_INSERTION_MINIMUM_VIDEO_LENGTH_MIN_FOR_NOTICE":3,"AD_INSERTION_MAXIMUM_NUMBER_OF_AD_BREAKS":10},2007],["VideoPlayerAbortLoadingExperiment",[],{"canAbort":false,"delayedAbortLoading":0},824],["VideoPlayerExperiments",[],{"redesign":true,"noshadow":false,"noanim":false,"destroyonunload":false,"hlsButton":false,"fourArrowFullScreen":false,"autoplayWhenWNS":false,"autoplayUntilHalfGone":true,"slidingWNSv3":false,"chromecast":false,"enableRtmpBuffer":false,"rtmpBufferTime":0,"rtmpBufferTimeMax":0,"rtmpImprovePlayback":false,"rtmpStartTimeFix":true,"useBlurredBars":true,"liveAudioViewer":true,"webVideosBlockAutoplayWhenOffline":false,"delayAutoplayUntilAfterLoad":false,"autoplayMaxCallsPerWindow":0,"autoplayThrottleWindow":0,"autoplayThrottleDelay":0,"inlineSoundVisible":false,"persistentWNSEnabled":false,"showWNSClose":true,"rhcWNSPauseAds":false,"rhcWNS":false,"responsiveRHC":false,"ResponsiveRHCMinWidth":999,"pipEntryIcon":null,"pauseWhenOffscreen":false,"bufferingErrorTimeout":30000,"liveBufferingErrorTimeout":60000,"progressiveBufferingErrorTimeout":60000,"allowBufferingErrorForHiddenTab":true,"disableFallbackModeForInactiveTab":false,"disableAutoplayForInactiveTab":true,"disableStallLoggingForError":true,"endBufferingOnFallbackPlay":false,"delayFormatChangeEvent":true,"autoplayBlockBlacklist":false,"rhcWNSEnabled":false,"rhcWNSDrawerEnabled":false,"rhcWNSExpandToTahoe":false,"abortLoadingDecisioningLogic":false,"embeddedPlayerEnhancements":false,"seekZeroWhenAbortLoadingFinishedVideos":false,"seekZeroOnlyVodVideo":false,"abortLoadingDelay":3000,"deferWhichVideoToAbortLoadingDecisioningLogic":"all","decoupleAbortLoadingFromPause":false,"abortLoadingHelperDefaultPreloading":false,"abortLoadingHelperNegativeYAbortLoading":false,"ignoreDialogCounter":false,"addViewabilityFixEnabled":true,"enableViewabilityLogging":false,"enableViewabilityLoggingForOrganic":false,"enableVideoSampledViewabilityLogging":false,"viewabilityMinBlockSize":200,"viewabilityPollingRate":200,"abortLoadingHelperBoundedReloading":false,"abortLoadingReUpStillVisibleVideos":false,"abortedLoadingPixelBoundary":-2000,"reloadingPixelBoundary":-1000,"videoPollingFrequency":200,"disableAutoplayOnHomePgUpPgDownEnd":false,"pressPgUpPgDownAutoplayShutoffInterval":500,"pressHomeEndAutoplayShutoffInterval":1000,"enteredExitedFsLoggingFix":false,"watchedPercentage":95,"createVideoVisibilityObserver":false,"fireBufferingEndEventOnDestroy":false,"showStaleOverlayOnVideoNodeStaled":false,"showHDIndicator":true,"useDebouncedScroll":false,"enableInstreamAdViewabilityLogging":true,"enableComponentGuards":true,"endScreenDuration":5000,"staleVideoNudgeAmount":0,"copyLinkInContextMenu":false,"copyLinkAtCurrentTimeInContextMenu":false,"fixVPCCallBeforeLoaded":false,"videoVisibilityObserverUseMinimumThreshold":false,"delayVideoControlRenderForApiReady":false,"unsubscribeImmediateplay":false,"removeHiddenVideoTracking":false,"fixVideoPauseWhenBackgroundedInFeed":false,"fixFeedVideosPlayOffscreen":false,"pauseUpNextControllerWNS":false,"pauseAudioUnitsOffscreen":true,"pauseOffscreenMutedOnUpdateAutoplay":true,"adjustPriorityBasedOnAutoplayIndex":false,"pauseOffscreenUnitsFirst":true,"offsetToBestUnitPriority":0,"disableDisableOffscreenPlayModule":false,"dePrioritizeUpfoldVideos":false,"noAbortLoadingInFeedClickToPlay":false,"correctedSBLEventSequence":false,"logSBLVpts":true,"logRequestedPlayingAsync":true,"logUnmutedAsync":false,"pauseAdIfNoDocumentFocus":true,"useBringYourOwnAutoplayRule":true,"pauseMutedIfNoDocumentFocus":false,"fullScreenVideoIsNotHidden":false},997],["VideoPlayerHTML5Experiments",[],{"newStateChangeCalculation":true,"useBanzaiVitalForLive":true,"useCurrentTimeAdjustment":true,"useCustomContextMenu":false,"preloadOnPlay":false,"useFixedVolumeLogging":true,"fixCurrentTimeType":true,"discerningAbandonStallLogging":true,"superficialUnpauseEventsFix":true,"unloadShouldCancelPendingRequest":false,"heartbeatIntervalMS":60000,"heartbeatUpdateWatchTime":false,"shouldDispatchPlayingEvent":true,"heartbeatUpdateWatchTimeV2":true,"heartbeatSkipOnBuffering":true,"destroyWithoutStillFrame":false,"fixEventTimeLogging":true,"fixIE11EndedPausedState":true,"disableBufferingBeforeStartedPlaying":true,"useVitalForClosing":false,"useVitalForOpening":false,"useVitalForEverything":false,"useVpcPlayingStateForPrioritization":false,"disableBufferAtEndOfPlayback":true,"displayInterruptedScreenDelay":2000,"displayLoopingWhenAutoplayNextVideo":false,"preventNegativeTimePositions":true,"dropQualityChange":true},1162],["VideoPlayerMemLeakExperiments",[],{"clear_html5_error_handler":true,"unsubscribe_from_subtitles":false,"clear_handlers_on_destroy":false,"clear_shutdown_with_arbiter":true,"clear_runonleave_with_arbiter":false},2108],["VideoPlayerPreloadExperiment",[],{"preloadVideosCount":0},800],["VideoPlayerReactConfig",[],{"defaultQuality":"","outdatedBrowser":false},1919],["VideoPlayerResizeSettings",[],{"disable_flash_set_dimensions":1},1164],["VideoPlayerSnowliftReactExperiments",[],{"shouldPrefetchMpd":false,"videoCanStoreVolumeLevel":false,"shouldRenderVideoOnClick":true,"preloadVideo":false,"shouldRenderVideoOnNotificationOpen":false,"useUfiSupport":true,"shouldFetchVideoDataOnNotificationOpen":false},1959],["VideoUploadConfig",[],{"videoExtensions":{"gif":1,"mov":1,"qt":1,"wmv":1,"avi":1,"mpe":1,"mpg":1,"mpeg":1,"asf":1,"mp4":1,"m4v":1,"mpeg4":1,"3gpp":1,"3gp":1,"3g2":1,"mkv":1,"flv":1,"vob":1,"ogm":1,"ogv":1,"nsv":1,"mod":1,"tod":1,"dat":1,"mts":1,"m2ts":1,"dv":1,"divx":1,"f4v":1,"ts":1,"tmp":1,"rmvb":1,"webm":1},"allowMultimedia":false,"showMultimediaNUX":false},267],["VideoWatchAndScrollVariables",[],{"noWNSRemainingTime":"9223372036854775807"},1782],["WebWorkerConfig",[],{"logging":{"enabled":false,"config":"WebWorkerLoggerConfig"},"evalWorkerURL":"\/rsrc.php\/v3\/yK\/r\/pcnyCVb0ZCt.js?_nc_x=Ij3Wp8lg5Kz"},297],["TahoeVariables",[],{"backAffordanceGlyph":"chevron-left","useTahoe":true,"useChannelChaining":"channel","fullscreenControlBehavior":"tahoe","useTahoePhotos":false,"useTahoeFallback":true,"useGridViewEndScreen":true,"useReactReparenting":false,"wnsInBackAffordance":false,"neverAutoPauseLive":false,"openShareStory":false,"showGridViewEndScreenForLiveVideos":false},2260],["ShowsConfig",[],{"countThreshold":75,"removeProfilePictureCheck":false,"showsM1":true,"showsM2":true,"userCanCreateShow":false,"showNameSuggestedLength":43,"showDescriptionMaxLength":255},2409],["LoggerSlogXConfigs",[],{"loggers":[]},2563],["VideoPlayerReasonTransitionExperiment",[],{"provideReason":true},3042],["MOzExperiments",[],{"abr_confidence_threshold":0.9,"bandwidth_estimator_half_life":6,"bandwidth_estimator_outlier_exclusion_factor":2,"bandwidth_estimator_std_dev_penalty_factor":0.1,"bandwidth_estimator_variance_penalty_half_life":0,"oz_www_bandwidth_estimator_variance_penalty_down_factor":0,"oz_www_bandwidth_estimator_variance_penalty_up_factor":0,"precreate_cache_size":0,"enable_adaptation":false,"min_eval_interval":1000,"mtouch_use_oz_player":false,"feed_quick_starter":true,"mtouch_fix_dash_manifest":false,"fix_call_destroy":true,"immediate_play":true,"mtouch_reuse_cache_values":false,"precreate_video_node":true,"use_quick_starter":true,"ignore_initial_mute_operation":false,"use_native_promise":true,"no_quickstarter_for_ctp":true,"no_prefetch_for_ctp":false,"disable_prefetch":false,"abr_eval_buffer_threshold":0,"lazy_parse_sidx":false,"fix_quick_starter_overhead":true,"initial_switch_interval":0,"min_switch_interval":5000,"appends_per_segment":3,"abr_restrict_from_index":0,"abr_restrict_to_index":4,"abr_min_bandwidth_samples":3,"segments_to_stream":5,"switch_to_existing_representation":false,"segments_to_stream_under_playhead_threshold":0,"low_segment_stream_playhead_threshold":0,"use_oz_loop_driver":true,"buffer_ahead_target":10,"low_buffer_bandwidth_target_threshold":10,"low_buffer_bandwidth_target_increase_factor":0,"segments_to_stream_near_bandwidth_boundary":5,"bandwidth_boundary_standard_deviation_factor":1,"resolution_constraint_factor":0,"byte_count_per_sample":20000,"minimum_bytes_to_sample_on_close":0,"exclude_prefetch_bandwidth_samples":false,"minimum_bandwidth_sample_duration":0,"maximum_bandwidth_sample_bandwidth":999999999,"max_bandwidth_sample_count":15,"use_performance_entry_on_stream_close":false,"ignore_time_to_response_start":false,"clear_buffer_on_user_quality_upgrade":false,"parse_first_segment":false,"enable_abr_for_first_request":false,"abr_prevent_down_switch_buffer_threshold":0,"set_source_buffer_append_window_end":false,"keep_anchor_when_seeking_into_same_buffer":false,"use_stream_end_time_in_segment_locator":false,"bandwidth_penalty_per_additional_video":0,"bandwidth_penalty_additional_video_start":0,"prefetch_cache_bandwidth_upper_limit":0,"paused_stream_segments_count":0,"use_scheduler":false,"update_media_source_duration":false,"sbm_waits_for_update_end":false,"network_retry_intervals_json":"{}","listen_for_quick_starter_errors":false,"use_buffering_detector":false,"send_estimated_bandwidth":true,"bandwidth_cache_key":"bandwidthEstimate"},3361],["VideoPlayerStateBasedLoggingEvents",[],{"StateBasedLoggingEventNames":["cancelled_requested_playing","caption_change","chromecast_availability_checked","chromecast_not_supported","chromecast_button_visible","entered_fs","entered_hd","error","exited_fs","exited_hd","finished_loading","finished_playing","headset_connected","headset_disconnected","host_error","muted","paused","player_format_changed","quality_change","requested_playing","scrubbed","seeked","started_playing","unmuted","unpaused","volume_changed","volume_decrease","volume_increase","viewport_rotated","viewport_zoomed","heading_reset","guide_entered","guide_exited","spherical_fallback_entered","played_for_three_seconds","commercial_break_offscreen","commercial_break_onscreen","ad_break_starting_indicator","ad_break_non_interruptive_ad_start","ad_break_non_interruptive_ad_click","ad_break_pre_roll_ad_start","ad_break_tap_on_trailer","ad_break_tap_start_from_trailer","representation_ended","heart_beat","stale","viewability_changed","video_logging_session_timeout","video_logging_session_wakeup"]},3462],["VideoPlayerShakaSessionConfigOverride",[],{},3522],["MqttWebConfig",[],{"fbid":"0","appID":219994525426954,"endpoint":"wss:\/\/edge-chat.facebook.com\/chat","pollingEndpoint":"https:\/\/edge-chat.facebook.com\/mqtt\/pull","subscribedTopics":[],"capabilities":10,"clientCapabilities":3,"chatVisibility":false},3790],["SimpleNUXMessageConfig",[],{"isEnabled":true},3936],["ReactionIconFilepaths",[],{"paths":{"size14":{"like":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/14x14\/like.png","love":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/14x14\/love.png","haha":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/14x14\/haha.png","wow":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/14x14\/wow.png","sorry":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/14x14\/sorry.png","anger":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/14x14\/anger.png"},"size16":{"like":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/16x16\/like.png","love":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/16x16\/love.png","haha":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/16x16\/haha.png","wow":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/16x16\/wow.png","sorry":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/16x16\/sorry.png","anger":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/16x16\/anger.png"},"size18":{"like":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/18x18\/like.png","love":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/18x18\/love.png","haha":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/18x18\/haha.png","wow":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/18x18\/wow.png","sorry":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/18x18\/sorry.png","anger":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/18x18\/anger.png"},"size20":{"like":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/20x20\/like.png","love":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/20x20\/love.png","haha":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/20x20\/haha.png","wow":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/20x20\/wow.png","sorry":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/20x20\/sorry.png","anger":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/20x20\/anger.png"},"size24":{"like":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/24x24\/like.png","love":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/24x24\/love.png","haha":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/24x24\/haha.png","wow":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/24x24\/wow.png","sorry":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/24x24\/sorry.png","anger":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/24x24\/anger.png"},"size28":{"like":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/28x28\/like.png","love":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/28x28\/love.png","haha":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/28x28\/haha.png","wow":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/28x28\/wow.png","sorry":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/28x28\/sorry.png","anger":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/28x28\/anger.png"},"size48":{"like":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/48x48\/like.png","love":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/48x48\/love.png","haha":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/48x48\/haha.png","wow":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/48x48\/wow.png","sorry":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/48x48\/sorry.png","anger":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/48x48\/anger.png"},"size80":{"like":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/80x80\/like.png","love":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/80x80\/love.png","haha":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/80x80\/haha.png","wow":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/80x80\/wow.png","sorry":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/80x80\/sorry.png","anger":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/80x80\/anger.png"},"size96":{"like":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/96x96\/like.png","love":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/96x96\/love.png","haha":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/96x96\/haha.png","wow":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/96x96\/wow.png","sorry":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/96x96\/sorry.png","anger":"\/images\/ufi\/reactions\/v7_DO_NOT_USE_DIRECTLY\/96x96\/anger.png"},"svg":{"like":"\/images\/ufi\/reactions\/v6\/svg\/like.svg","love":"\/images\/ufi\/reactions\/v6\/svg\/love.svg","haha":"\/images\/ufi\/reactions\/v6\/svg\/haha.svg","wow":"\/images\/ufi\/reactions\/v6\/svg\/wow.svg","sorry":"\/images\/ufi\/reactions\/v6\/svg\/sorry.svg","anger":"\/images\/ufi\/reactions\/v6\/svg\/anger.svg"}},"pathsIX":{"size14":{"like":{"sprited":true,"spriteCssClass":"sx_c3b2e1","spriteMapCssClass":"sp_nUm-Frhgfk0"},"love":{"sprited":true,"spriteCssClass":"sx_0bbcc7","spriteMapCssClass":"sp_nUm-Frhgfk0"},"haha":{"sprited":true,"spriteCssClass":"sx_209d9f","spriteMapCssClass":"sp_nUm-Frhgfk0"},"wow":{"sprited":true,"spriteCssClass":"sx_032a46","spriteMapCssClass":"sp_nUm-Frhgfk0"},"sorry":{"sprited":true,"spriteCssClass":"sx_b751a1","spriteMapCssClass":"sp_nUm-Frhgfk0"},"anger":{"sprited":true,"spriteCssClass":"sx_5a69bc","spriteMapCssClass":"sp_nUm-Frhgfk0"}},"size16":{"like":{"sprited":true,"spriteCssClass":"sx_7f1ca4","spriteMapCssClass":"sp_nUm-Frhgfk0"},"love":{"sprited":true,"spriteCssClass":"sx_a6369b","spriteMapCssClass":"sp_nUm-Frhgfk0"},"haha":{"sprited":true,"spriteCssClass":"sx_f69ccc","spriteMapCssClass":"sp_nUm-Frhgfk0"},"wow":{"sprited":true,"spriteCssClass":"sx_d51c55","spriteMapCssClass":"sp_nUm-Frhgfk0"},"sorry":{"sprited":true,"spriteCssClass":"sx_733bf7","spriteMapCssClass":"sp_nUm-Frhgfk0"},"anger":{"sprited":true,"spriteCssClass":"sx_f19fb8","spriteMapCssClass":"sp_nUm-Frhgfk0"}},"size18":{"like":{"sprited":true,"spriteCssClass":"sx_586093","spriteMapCssClass":"sp_nUm-Frhgfk0"},"love":{"sprited":true,"spriteCssClass":"sx_577452","spriteMapCssClass":"sp_nUm-Frhgfk0"},"haha":{"sprited":true,"spriteCssClass":"sx_03db5e","spriteMapCssClass":"sp_nUm-Frhgfk0"},"wow":{"sprited":true,"spriteCssClass":"sx_284e80","spriteMapCssClass":"sp_nUm-Frhgfk0"},"sorry":{"sprited":true,"spriteCssClass":"sx_af8990","spriteMapCssClass":"sp_nUm-Frhgfk0"},"anger":{"sprited":true,"spriteCssClass":"sx_9b4c37","spriteMapCssClass":"sp_nUm-Frhgfk0"}},"size20":{"like":{"sprited":true,"spriteCssClass":"sx_370d7a","spriteMapCssClass":"sp_nUm-Frhgfk0"},"love":{"sprited":true,"spriteCssClass":"sx_d3bb92","spriteMapCssClass":"sp_nUm-Frhgfk0"},"haha":{"sprited":true,"spriteCssClass":"sx_476d4b","spriteMapCssClass":"sp_nUm-Frhgfk0"},"wow":{"sprited":true,"spriteCssClass":"sx_c9210f","spriteMapCssClass":"sp_nUm-Frhgfk0"},"sorry":{"sprited":true,"spriteCssClass":"sx_6f8115","spriteMapCssClass":"sp_nUm-Frhgfk0"},"anger":{"sprited":true,"spriteCssClass":"sx_4ba3eb","spriteMapCssClass":"sp_nUm-Frhgfk0"}},"size24":{"like":{"sprited":true,"spriteCssClass":"sx_38ea34","spriteMapCssClass":"sp_nUm-Frhgfk0"},"love":{"sprited":true,"spriteCssClass":"sx_651141","spriteMapCssClass":"sp_nUm-Frhgfk0"},"haha":{"sprited":true,"spriteCssClass":"sx_77fbf8","spriteMapCssClass":"sp_nUm-Frhgfk0"},"wow":{"sprited":true,"spriteCssClass":"sx_52732b","spriteMapCssClass":"sp_nUm-Frhgfk0"},"sorry":{"sprited":true,"spriteCssClass":"sx_2198ad","spriteMapCssClass":"sp_nUm-Frhgfk0"},"anger":{"sprited":true,"spriteCssClass":"sx_6861da","spriteMapCssClass":"sp_nUm-Frhgfk0"}},"size28":{"like":{"sprited":true,"spriteCssClass":"sx_3bb7e4","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"love":{"sprited":true,"spriteCssClass":"sx_c5f2d7","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"haha":{"sprited":true,"spriteCssClass":"sx_cc86d1","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"wow":{"sprited":true,"spriteCssClass":"sx_bce7a3","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"sorry":{"sprited":true,"spriteCssClass":"sx_e6f395","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"anger":{"sprited":true,"spriteCssClass":"sx_e59bdd","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"}},"size48":{"like":{"sprited":true,"spriteCssClass":"sx_834ef4","spriteMapCssClass":"sp_nUm-Frhgfk0"},"love":{"sprited":true,"spriteCssClass":"sx_d29233","spriteMapCssClass":"sp_nUm-Frhgfk0"},"haha":{"sprited":true,"spriteCssClass":"sx_fca0be","spriteMapCssClass":"sp_nUm-Frhgfk0"},"wow":{"sprited":true,"spriteCssClass":"sx_1e6c84","spriteMapCssClass":"sp_nUm-Frhgfk0"},"sorry":{"sprited":true,"spriteCssClass":"sx_c19094","spriteMapCssClass":"sp_nUm-Frhgfk0"},"anger":{"sprited":true,"spriteCssClass":"sx_27e3fe","spriteMapCssClass":"sp_nUm-Frhgfk0"}},"size80":{"like":{"sprited":true,"spriteCssClass":"sx_1fd781","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"love":{"sprited":true,"spriteCssClass":"sx_3a085d","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"haha":{"sprited":true,"spriteCssClass":"sx_51b196","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"wow":{"sprited":true,"spriteCssClass":"sx_40a6ae","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"sorry":{"sprited":true,"spriteCssClass":"sx_a6b0e6","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"},"anger":{"sprited":true,"spriteCssClass":"sx_40c8c5","spriteMapCssClass":"sp_HwJ3Iv1Ir8s"}},"size96":{"like":{"sprited":true,"spriteCssClass":"sx_2450de","spriteMapCssClass":"sp_nUm-Frhgfk0"},"love":{"sprited":true,"spriteCssClass":"sx_b228bc","spriteMapCssClass":"sp_nUm-Frhgfk0"},"haha":{"sprited":true,"spriteCssClass":"sx_636ff0","spriteMapCssClass":"sp_nUm-Frhgfk0"},"wow":{"sprited":true,"spriteCssClass":"sx_ff730b","spriteMapCssClass":"sp_nUm-Frhgfk0"},"sorry":{"sprited":true,"spriteCssClass":"sx_f650a9","spriteMapCssClass":"sp_nUm-Frhgfk0"},"anger":{"sprited":true,"spriteCssClass":"sx_2df657","spriteMapCssClass":"sp_nUm-Frhgfk0"}}}},4022],["DesktopWebMessageTypesSitevarConfig",[],{"ChatProxySupportedMessageTypes":{"__map":[["P2P\/CreditCardChanged",true],["P2P\/CreditCardDeleted",true],["P2P\/PaymentRequestStateChanged",true],["P2P\/TransferStatusChanged",true],["buddylist_overlay",true],["buddylist_overlay_buffered",true],["business_report_progress",true],["chatproxy-presence",true],["delta",true],["deltaflow",true],["deltaflowreject",true],["dismiss_all_missed_call_dialog",true],["friend_requests_seen",true],["friending_state_change",true],["jewel_friending_notifs",true],["jewel_requests_add",true],["jewel_requests_remove_old",true],["live_poke",true],["messaging",true],["mobile_requests_count",true],["nav_update_counts",true],["notif_sound_pref_changed",true],["notification_hidden",true],["notifications_read",true],["notifications_seen",true],["onevc",true],["page_typing",true],["places_editor_user_stats",true],["privacy_changed",true],["qprimer",true],["reactquery_update",true],["rtc_live_json",true],["rtc_multi_json",true],["setting",true],["sevmanager\/edit",true],["sevmanager\/escalation_update",true],["sevmanager\/new_comment",true],["sevmanager\/new_escalation",true],["sevmanager\/thread_created",true],["sevmanager\/update",true],["skywalker",true],["ttyp",true],["typ",true],["videocall_block_setting",true],["video_encode",true],["webrtc",true]]},"MQTTMigrationExcludeMessageTypes":{"__map":[["buddylist_overlay",true],["buddylist_overlay_buffered",true],["chatproxy-presence",true],["delta",true],["deltaflow",true],["deltaflowreject",true],["messaging",true],["onevc",true],["qprimer",true],["rtc_live_json",true],["rtc_multi_json",true],["skywalker",true],["ttyp",true],["typ",true],["webrtc",true]]}},4269],["MqttPublishTimeoutConfig",[],{"mqttPublishTimeoutMs":60000},4266],["SearchLoggingOptions",[],{"signalLinkClicks":false},1729],["ViewableImpressionConfig",[],{"bypass_banzai_check":true,"handleAllHiddenEvents":true,"handleAllVisibleEvents":true,"minOffsetVisibleFromTop":0,"minOffsetVisibleFromBottom":0,"timeout":100,"cacheTrackedElements":true,"doHeatmapLogging":false,"heatmapLoggingDurationMS":null,"impressionURL":"\/xti.php","nonviewableEnabled":false,"is_xtrackable":true,"forceInstreamLoggingOnPlay":true,"considerSubtreeModification":true,"minOffsetVisibleFromLeft":0,"minOffsetVisibleFromRight":0,"addCauseToAllHiddenEvents":false,"doNotForceExitOnUpdateVisible":false},437],["SLConfig",[],{"gk":{"s_link_utils":true,"sl_perf_logging":false,"sl_replace_about_link":true,"sl_replace_s":false},"sv":{"interval":10,"sl_content_waiting_delay":16}},1918],["TrackingConfig",[],{"domain":"https:\/\/pixel.facebook.com"},325],["UFI2CommentBodyTextWithEntitiesConfig",[],{"renderEmoticons":true,"uriTruncationThreshold":60},3048],["PrivateCommentsConfig",[],{"composer_lock_enabled":false,"privacy_text_above_comment_enabled":false,"privacy_text_above_composer_enabled":false,"dark_comment_theme_enabled":false,"dark_composer_theme_enabled":false,"privacy_text_inside_comment_enabled":false,"composer_unlocked_lock_enabled":false,"reply_composer_lock_enabled":false},3084],["ActorPresenceGatingConfig",[],{"www_comment_presence_enabled":true},3169],["UFI2CommentsConfig",[],{"firstPagePreloadDelay":1000,"minRepliesToToggleReplies":10,"paginationPrefetchingStrategy":"prefetch_enter_pager_1000ms_list","profilePictureSize20":20,"profilePictureSize32":32,"shouldShowFRXForCommentReporting":true},3244],["UFI2Config",[],{"sessionID":"3a816d18-fd0a-40ac-8241-1e94e84adc67","composerInputSamplingRateDenominator":100,"legacyReplyFetchShortfallSimulationFactor":0.8,"legacyTopLevelFetchShortfallSimulationFactor":0.95,"serverRenderedAttachmentStyles":["event","file_upload","music_aggregation","tool_share"],"shouldUseSimplifiedAttachments":false,"attachmentStylesToSimplify":["event","file_upload","music_aggregation","tool_share"],"shouldShowWritingHelp":true},3350],["UFI2NUXConfig",[],{"shouldShowRemoveTextDelightsNUX":false,"shouldShowActorSelectorNUX":false,"UFI2GIFNUX":null,"UFI2MarkdownNUX":null,"UFI2ActorSelectorNUX":null,"UFI2RemoveTextDelightsNUX":null,"UFI2CommentEditedNUX":null,"UFI2WritingHelpNUX":null,"UFI2SubmitNUX":null,"UFI2VoteArrowNUX":null,"UFI2VoteFirstArrowNUX":null},3768],["ReactionIconLightFilepaths",[],{"paths":{"size14":{"like":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yU\/r\/mMP5bKj117M.png","love":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yT\/r\/-Lb3v-5rQ6P.png","haha":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yn\/r\/SiB5naaVLhd.png","wow":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yp\/r\/q9UZ1ViRxZK.png","sorry":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yR\/r\/dIARLyd5U76.png","anger":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yL\/r\/FiuPYLYqnob.png"},"size16":{"like":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yv\/r\/dOJFaVZihS_.png","love":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yq\/r\/emi3_1IpGVz.png","haha":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yj\/r\/yzxDz4ZUD49.png","wow":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yn\/r\/qZOYbiV8BHS.png","sorry":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yP\/r\/dhZwLwMz9U7.png","anger":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yH\/r\/i6eZvvUMZW5.png"},"size18":{"like":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yb\/r\/gAITXRGuTkF.png","love":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yc\/r\/cIKELsuj0h-.png","haha":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y8\/r\/_q8Po-8CWcm.png","wow":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yx\/r\/acDBP1s1umP.png","sorry":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yP\/r\/v_tQ10oQxTN.png","anger":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ys\/r\/l86bNJ2gAr0.png"}},"pathsIX":{"size14":{"like":{"sprited":true,"spriteCssClass":"sx_c3b2e1","spriteMapCssClass":"sp_nUm-Frhgfk0"},"love":{"sprited":true,"spriteCssClass":"sx_0bbcc7","spriteMapCssClass":"sp_nUm-Frhgfk0"},"haha":{"sprited":true,"spriteCssClass":"sx_209d9f","spriteMapCssClass":"sp_nUm-Frhgfk0"},"wow":{"sprited":true,"spriteCssClass":"sx_032a46","spriteMapCssClass":"sp_nUm-Frhgfk0"},"sorry":{"sprited":true,"spriteCssClass":"sx_b751a1","spriteMapCssClass":"sp_nUm-Frhgfk0"},"anger":{"sprited":true,"spriteCssClass":"sx_5a69bc","spriteMapCssClass":"sp_nUm-Frhgfk0"}},"size16":{"like":{"sprited":true,"spriteCssClass":"sx_7f1ca4","spriteMapCssClass":"sp_nUm-Frhgfk0"},"love":{"sprited":true,"spriteCssClass":"sx_a6369b","spriteMapCssClass":"sp_nUm-Frhgfk0"},"haha":{"sprited":true,"spriteCssClass":"sx_f69ccc","spriteMapCssClass":"sp_nUm-Frhgfk0"},"wow":{"sprited":true,"spriteCssClass":"sx_d51c55","spriteMapCssClass":"sp_nUm-Frhgfk0"},"sorry":{"sprited":true,"spriteCssClass":"sx_733bf7","spriteMapCssClass":"sp_nUm-Frhgfk0"},"anger":{"sprited":true,"spriteCssClass":"sx_f19fb8","spriteMapCssClass":"sp_nUm-Frhgfk0"}},"size18":{"like":{"sprited":true,"spriteCssClass":"sx_586093","spriteMapCssClass":"sp_nUm-Frhgfk0"},"love":{"sprited":true,"spriteCssClass":"sx_577452","spriteMapCssClass":"sp_nUm-Frhgfk0"},"haha":{"sprited":true,"spriteCssClass":"sx_03db5e","spriteMapCssClass":"sp_nUm-Frhgfk0"},"wow":{"sprited":true,"spriteCssClass":"sx_284e80","spriteMapCssClass":"sp_nUm-Frhgfk0"},"sorry":{"sprited":true,"spriteCssClass":"sx_af8990","spriteMapCssClass":"sp_nUm-Frhgfk0"},"anger":{"sprited":true,"spriteCssClass":"sx_9b4c37","spriteMapCssClass":"sp_nUm-Frhgfk0"}}}},4595],["ReactionIconUnspritedFilepaths",[],{"paths":{"size14":{"like":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yU\/r\/mMP5bKj117M.png","love":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yT\/r\/-Lb3v-5rQ6P.png","haha":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yn\/r\/SiB5naaVLhd.png","wow":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yp\/r\/q9UZ1ViRxZK.png","sorry":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yR\/r\/dIARLyd5U76.png","anger":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yL\/r\/FiuPYLYqnob.png","dorothy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yu\/r\/-gBC-br1Ow2.png","toto":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y_\/r\/J45ChlAThNO.png"},"size16":{"like":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yv\/r\/dOJFaVZihS_.png","love":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yq\/r\/emi3_1IpGVz.png","haha":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yj\/r\/yzxDz4ZUD49.png","wow":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yn\/r\/qZOYbiV8BHS.png","sorry":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yP\/r\/dhZwLwMz9U7.png","anger":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yH\/r\/i6eZvvUMZW5.png","dorothy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yp\/r\/ZXxRcAexGpd.png","toto":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y4\/r\/W_Vdj9wA1g9.png"},"size18":{"like":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yb\/r\/gAITXRGuTkF.png","love":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yc\/r\/cIKELsuj0h-.png","haha":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y8\/r\/_q8Po-8CWcm.png","wow":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yx\/r\/acDBP1s1umP.png","sorry":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yP\/r\/v_tQ10oQxTN.png","anger":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ys\/r\/l86bNJ2gAr0.png","dorothy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yF\/r\/GVZCHJyrcks.png","toto":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yG\/r\/iRjgwFVo42s.png"},"size20":{"like":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yU\/r\/tc5IAx58Ipa.png","love":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yE\/r\/MB1XWOdQjV0.png","haha":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yK\/r\/bkP6GqAFgZ_.png","wow":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yS\/r\/tHO3j6Ngeyx.png","sorry":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y4\/r\/1eqxxZX7fYp.png","anger":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yY\/r\/PByJ079GWfl.png","dorothy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yZ\/r\/54HO60tf-I2.png","toto":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yO\/r\/7WOxWSpTCC5.png"},"size24":{"like":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yZ\/r\/Gpvd1gwYGMq.png","love":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yQ\/r\/1ldNcWxMftG.png","haha":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y6\/r\/jkdo-g9JGpX.png","wow":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yt\/r\/KrYCq64Il6x.png","sorry":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yv\/r\/BiAS1H5CNyR.png","anger":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yH\/r\/J2rPzl4uNeG.png","dorothy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yA\/r\/OSJQx-BBgBH.png","toto":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yP\/r\/j5eWwPo05tl.png"},"size28":{"like":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yy\/r\/xaH0tRVVOJ5.png","love":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yn\/r\/m2P1sk1kXJn.png","haha":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yh\/r\/Ps4VXX_YJH3.png","wow":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y-\/r\/OATReMjZqNb.png","sorry":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yD\/r\/HO9sTWFmgs-.png","anger":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yz\/r\/CJmS8xTNFyS.png","dorothy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yq\/r\/_LJI9iGePH4.png","toto":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ys\/r\/zzwY-7CtCSD.png"},"size48":{"like":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y9\/r\/MHzsfl2dotT.png","love":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y0\/r\/w3qjgKNj9fB.png","haha":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yE\/r\/MELK-XIZUPd.png","wow":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yW\/r\/gZnHawqIu13.png","sorry":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y4\/r\/T5dlFgzEnnp.png","anger":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y2\/r\/6detLcYDtQu.png","dorothy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yy\/r\/0898jCbAEu2.png","toto":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yG\/r\/Pwdx_F3PSS5.png"},"size80":{"like":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yj\/r\/4Hhx-iZafLN.png","love":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yR\/r\/nHGEGeELef5.png","haha":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yY\/r\/YBZcWEDkN0n.png","wow":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yV\/r\/gC4FgJKFgxu.png","sorry":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ym\/r\/oJL_rEENJMs.png","anger":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y1\/r\/5baGxK8FMOm.png","dorothy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yu\/r\/i2UysOHmcqt.png","toto":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yn\/r\/yI2VoXx332Y.png"},"size96":{"like":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y2\/r\/i2qGUDaZ2x0.png","love":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yF\/r\/Sj2PeHZYo_U.png","haha":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y7\/r\/ZMztwfY1wrd.png","wow":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yi\/r\/JV4uu8ZnhdM.png","sorry":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yx\/r\/zv4sFp77D28.png","anger":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y9\/r\/0dDHR0pBcmD.png","dorothy":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y9\/r\/6GHjDwPGzlQ.png","toto":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yc\/r\/mMSzwVksuns.png"}}},4601],["VideoPlayerFeedRegisterConfig",["FeedVideoClickToPlayController"],{"watchAndScrollV3":false,"wnsChannelsIntegrationEnabled":false,"disableOffscreenPlayModule":{"__m":"FeedVideoClickToPlayController"},"watchAndScrollModule":null},1204],["RTISubscriptionManagerConfig",[],{"config":{"max_subscriptions":150,"www_idle_unsubscribe_min_time_ms":600000,"www_idle_unsubscribe_times_ms":{"feedback_like_subscribe":600000,"comment_like_subscribe":600000,"feedback_typing_subscribe":600000,"comment_create_subscribe":1800000,"video_tip_jar_payment_event_subscribe":14400000},"www_unevictable_topic_regexes":["^(graphql|gqls)\/web_notification_receive_subscribe","^www\/sr\/hot_reload\/"],"autobot_tiers":{"latest":"realtime.skywalker.autobot.latest","intern":"realtime.skywalker.autobot.intern","sb":"realtime.skywalker.autobot.sb"},"max_subscription_flush_batch_size":100},"autobot":{},"assimilator":{},"unsubscribe_release":true,"bladerunner_www_sandbox":null,"bladerunner_php_sandbox":null},1081],["UFILiveStreamingCommentsConfig",[],{"liveCommentRenderDelayMS":2000},2082],["LiveVideoCurrentlyWatchingVideoPresenceConfig",[],{"videoPresenceGK":true},2480],["EntityPresenceConfig",[],{"activePingEnabled":true,"activePingFrequency":3000,"sessionLoggingSamplingRate":0.001,"samplingRateOverride":{"living_room":1,"live_video":0.1}},2485],["RTIFriendFanoutConfig",[],{"passFriendFanoutSubscribeGK":true,"topicPrefixes":["gqls\/live_video_currently_watching_subscribe"]},2781],["LiveVideoUFIConfig",[],{"watch_channel_scrollable_comments":30,"live_video_scrollable_comments":50},3256],["RequestStreamE2EClientSamplingConfig",[],{"sampleRate":0,"methodToSamplingMultiplier":{}},4501],["AccessibilityConfig",[],{"svTypicalDyslexiaMisspellings":["abit","abord","aboutt","absolut","absolutly","accomadations","accomodations","accout","acommodations","acording","acount","actully","adn","afther","agai","agaist","aganist","agian","agin","aginst","agoing","ahd","ailen","alcholic","alittle","alll","allmost","allready","alls","allt","allways","alot","alow","alway","amazeing","ameen","andd","annd","anouther","anway","anxity","aof","apointment","apperciate","appoitment","approch","aree","arround","artcile","atack","athem","aways","awsome","baad","babysitt","bac","backstaber","badd","bak","banna","bby","bck","beatiful","beatuiful","beauitful","beautifull","becuase","becuse","befor","begining","bein","beleive","beleve","believ","belive","bettter","beutiful","bicth","bicthes","bieng","bigg","birthdayy","bitchs","bord","breake","brithday","buddist","buisness","bumed","burried","bussiness","caree","carefull","careing","carful","carzy","ceasar","ceck","cheif","chek","cherrokee","chiken","chil","childen","childern","chiling","chilli","choosen","chruch","coffe","colorfull","comeing","coment","comign","comming","commitee","comparision","comunity","confussion","conparison","constrution","contol","corse","corupt","creat","crinkley","cristmas","cuase","culd","cuse","cutt","damit","danceing","daugther","daymn","dayy","defnd","deleteing","deliverd","destory","differnt","diffrent","digg","disabilty","dne","driveing","droped","droping","duces","dum","dwn","dylexia","earthn","eatting","ect","eles","els","esle","especialy","estern","esty","eveing","eventully","everbody","everthing","everythings","eveything","evn","evry","evrything","exaplin","exs","facebok","familly","familys","famliy","fath","fck","fcked","feild","fighte","fina","finaly","finna","firday","firends","fker","flase","flavours","fmily","fnny","foward","freedome","freind","freinds","freindship","frist","frm","frome","frst","fucck","fuge","fuk","fuking","funn","futrue","gaurd","gentelmen","geting","girlfreind","girlfreinds","giv","givee","giveing","goiing","gon","gonee","gos","gose","goshh","gots","goverment","grabb","graet","grandchildern","granpa","gratful","greif","gril","grils","grl","guerilla","habbit","hade","halleluja","hambuger","handel","hange","happend","happends","hatee","hateing","hav","havee","haveing","healty","heavey","heree","heros","hilter","himm","hireing","hitt","homee","hopefull","hopefuly","hopeing","hopfully","hosiptal","hosptial","hott","houseing","huggs","humm","hummm","hve","hwo","iam","iand","idoits","ight","ignor","igot","ilove","imiss","inand","inpossible","inteligent","intrest","intrested","intresting","involvment","iss","issuses","isx","ither","itn","iwant","iwas","jelous","jhon","joiy","jst","jsut","jucie","jus","kindom","kno","knowlege","knw","lal","landloard","latley","ld","leanr","leaveing","leve","lfie","lifee","lifes","liike","lik","likee","litte","liveing","lmfaoo","lmmfao","locs","loln","loney","lonley","lool","lott","lov","loveing","lovley","luckly","luvv","maad","madd","mah","makeing","mayb","mee","ment","migrane","mispell","mke","mmmmh","moeny","moive","moring","morining","mornin","mountian","munte","mybe","nand","ncan","ndo","neaver","neice","neurospych","nfor","nggas","nhave","nices","nieghbor","niether","niga","nigas","nigth","nin","nis","nlike","nme","nno","nobdy","nof","nonthing","nore","normaly","nother","noww","nto","nver","occured","ofa","olny","onee","onn","opend","orther","owell","palce","pary","paryers","peacefull","peice","peole","peopel","pepole","peroid","pertty","pice","pickey","plase","platnum","plese","poeple","poisioned","politicans","poped","postive","potatoe","prasies","preatty","preist","preson","prettty","primos","privat","probaly","problme","progess","promblems","pslams","puting","rasied","realy","recieve","recive","relize","relly","remeber","remmber","reson","revv","rightt","rigth","rining","rockk","rottern","runing","runnig","savoir","scarey","scedule","secound","securty","senstive","seriousely","shareing","shee","sheild","shitt","shoping","sht","shuld","shure","slef","smok","smokeing","soild","soliders","som","sombody","somee","somethig","somethin","somone","somthing","sophmore","sopt","spce","specail","speding","sprit","srry","stil","stomache","stoped","strenght","stright","strom","struggleing","stuipd","stupied","sturday","suport","suprise","surgerys","surgey","swaer","swagg","tagg","takeing","tastey","tatt","tattood","tha","thankfull","thankgiving","thatn","theese","theey","theif","themm","ther","therory","thi","thier","thiis","thingss","thinkk","thir","thisngs","thiss","thn","thngs","thnk","thoe","thos","thoses","thouh","thow","ths","thsi","tht","thum","tierd","timee","tink","tlak","tlk","tlking","tme","toa","todayy","toinght","toliet","tommorrow","tomorow","tomorro","tomorrw","tomrrow","totaly","trama","traying","tring","truely","trun","tryn","tunels","ture","turing","turnin","turth","uhp","undrstand","untill","upp","useable","useing","vacumed","vidieo","vidoe","vidoes","vist","wach","waching","wacth","wacthed","wacthing","waht","wakeing","wakin","watchig","wel","welll","welp","wer","wether","whant","wheather","whene","whent","whith","whn","wht","wich","wieght","wierd","wierdo","wih","wil","withh","wnat","wnt","wonderfull","worng","worrys","wounderful","writeing","wrk","wuld","yaer","youn","youu"]},1227],["UFICommentFileInputAcceptValues",[],{"both":"video\/*, video\/x-m4v, video\/webm, video\/x-ms-wmv, video\/x-msvideo, video\/3gpp, video\/flv, video\/x-flv, video\/mp4, video\/quicktime, video\/mpeg, video\/ogv, .ts, .mkv, image\/*, image\/heic, image\/heif","photos":"image\/*, image\/heic, image\/heif","videos":"video\/*, video\/x-m4v, video\/webm, video\/x-ms-wmv, video\/x-msvideo, video\/3gpp, video\/flv, video\/x-flv, video\/mp4, video\/quicktime, video\/mpeg, video\/ogv, .ts, .mkv","files":"application\/*, application\/pdf, application\/x-pdf, application\/x-bzpdf, application\/x-gzpdf, application\/msword, application\/vnd.openxmlformats-officedocument.wordprocessingml.document, application\/vnd.ms-powerpoint, application\/vnd.openxmlformats-officedocument.presentationml.presentation, application\/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application\/vnd.ms-excel, text\/*, image\/*, image\/heic, image\/heif, model\/*, video\/*, video\/x-m4v, video\/webm, video\/x-ms-wmv, video\/x-msvideo, video\/3gpp, video\/flv, video\/x-flv, video\/mp4, video\/quicktime, video\/mpeg, video\/ogv, .ts, .mkv"},1317],["SutroStoryHeaderUFIGatingConfig",[],{"enabled_for_comment_composer_rounded_borders":true,"enabled_for_comment_composer_larger":true,"enabled_for_comment_glyphs":true,"enabled_for_story_header":false,"enabled_for_ufi":true,"enabled_for_ufi_animation":true,"enabled_for_ui40":false,"enabled_hide_ufi_border":true,"enabled_less_story_header_padding":true,"enabled_privacyicon":false,"enabled_triple_dot":true,"is_uppercased":false},2483],["SutroPhase2GatingConfig",[],{"enabled_bluebaricons":false,"enabled_bluebaricons_slant_bell":false,"enabled_bubble_comments":true,"enabled_reduced_spacing_bubble_comments":false,"enabled_alternate_color_bubble_comments":false,"enabled_narrow_bubble_attachments":false,"enabled_bling_above_ufi":false,"enabled_recent_activity":false,"enabled_counts_on_left":false},2751],["UFIBotsButton",[],{"module":null},2875],["CommentMentionsGatingConfig",[],{"enabled_rich_comment_mentions":false},2987],["SutroBlingBarGatingConfig",[],{"enabled":false,"color":"default"},3367],["ReactShareButtonGatedModule",["UFIShareNowMenuBootloader.react"],{"module":{"__m":"UFIShareNowMenuBootloader.react"},"should_use_groups_dialog":false,"store":null},2537],["KillabyteProfilerConfig",[],{"htmlProfilerModule":null,"profilerModule":null,"depTypes":{"BL":"bl","NON_BL":"non-bl"}},1145],["QuicklingConfig",[],{"version":"1001588497;0;","sessionLength":10,"inactivePageRegex":"^\/(fr\/u\\.php|ads\/|advertising|ac\\.php|ae\\.php|a\\.php|ajax\/emu\/(end|f|h)\\.php|badges\/|comments\\.php|connect\/uiserver\\.php|editalbum\\.php.+add=1|ext\/|feeds\/|help([\/?]|$)|identity_switch\\.php|isconnectivityahumanright\/|intern\/|login\\.php|logout\\.php|sitetour\/homepage_tour\\.php|sorry\\.php|syndication\\.php|webmessenger|\/plugins\/subscribe|lookback|brandpermissions|gameday|pxlcld|comet|worldcup\/map|livemap|work\/reseller|([^\/]+\/)?dialog|legal|.+\\.pdf$|.+\/settings\/)","badRequestKeys":["nonce","access_token","oauth_token","xs","checkpoint_data","code"],"logRefreshOverhead":false},60],["JSErrorExtra",[],{"policy:www:no_min_nl":true},251],["JSErrorPlatformColumns",[],{},255],["WebStorageMonsterLoggingURI",[],{"uri":"\/ajax\/webstorage\/process_keys\/?state=1"},3032],["BrowserPaymentHandlerConfig",[],{"enabled":false},3904],["TimeSpentConfig",[],{"0_delay":0,"0_timeout":8,"delay":1000,"timeout":64},142],["CoreWarningGK",[],{"forceWarning":false},725],["PageTransitionsConfig",[],{"reloadOnBootloadError":true},1067],["FunnelLoggerConfig",[],{"freq":{"WWW_MESSENGER_VIDEO_CHAT_LINKS_FUNNEL":1,"PIE_MANAGER_HIRING_HUB_FUNNEL":1,"WWW_ESCALATION_TOOLS_NOTIFICATIONS_PAGE_FUNNEL":1,"WWW_ONCALL_VIEW_FUNNEL":1,"WWW_MESSENGER_GROUP_ESCALATION_FUNNEL":10,"WWW_SPATIAL_REACTION_PRODUCTION_FUNNEL":1,"CREATIVE_STUDIO_CREATION_FUNNEL":1,"WWW_CANVAS_AD_CREATION_FUNNEL":1,"WWW_CANVAS_EDITOR_FUNNEL":1,"WWW_LINK_PICKER_DIALOG_FUNNEL":1,"WWW_MEME_PICKER_DIALOG_FUNNEL":1,"WWW_LEAD_GEN_FORM_CREATION_FUNNEL":1,"WWW_LEAD_GEN_FORM_EDITOR_FUNNEL":1,"WWW_LEAD_GEN_DESKTOP_AD_UNIT_FUNNEL":1,"WWW_LEAD_GEN_MSITE_AD_UNIT_FUNNEL":1,"WWW_CAMPFIRE_COMPOSER_UPSELL_FUNNEL":1,"WWW_PMT_FUNNEL":1,"WWW_PULSE_FUNNEL":1,"WWW_ORGTOOL_FUNNEL":1,"WWW_RECRUITING_PRODUCTS_ATTRIBUTION_FUNNEL":1,"WWW_RECRUITING_PRODUCTS_FUNNEL":1,"WWW_RECRUITING_SEARCH_FUNNEL":1,"WWW_RECRUITING_BULK_EMAIL_FUNNEL":1,"WWW_RECRUITING_LEAVE_HANDLER_FUNNEL":1,"WWW_EXAMPLE_FUNNEL":1,"WWW_REACTIONS_BLINGBAR_NUX_FUNNEL":1,"WWW_REACTIONS_NUX_FUNNEL":1,"WWW_COMMENT_REACTIONS_NUX_FUNNEL":1,"WWW_MESSENGER_SHARE_TO_FB_FUNNEL":10,"POLYGLOT_MAIN_FUNNEL":1,"MSITE_EXAMPLE_FUNNEL":10,"WWW_FEED_SHARE_DIALOG_FUNNEL":100,"MSITE_AD_BREAKS_ONBOARDING_FLOW_FUNNEL":1,"MSITE_FEED_ALBUM_CTA_FUNNEL":10,"MSITE_FEED_SHARE_DIALOG_FUNNEL":100,"MSITE_COMMENT_TYPING_FUNNEL":500,"MSITE_HASHTAG_PROMPT_FUNNEL":1,"WWW_SEARCH_AWARENESS_LEARNING_NUX_FUNNEL":1,"WWW_CONSTITUENT_TITLE_UPSELL_FUNNEL":1,"MTOUCH_FEED_MISSED_STORIES_FUNNEL":10,"WWW_UFI_SHARE_LINK_FUNNEL":1,"WWW_CMS_SEARCH_FUNNEL":1,"GAMES_QUICKSILVER_FUNNEL":1,"SOCIAL_SEARCH_CONVERSION_WWW_FUNNEL":1,"SOCIAL_SEARCH_DASHBOARD_WWW_FUNNEL":1,"SRT_USER_FLOW_FUNNEL":1,"MSITE_PPD_FUNNEL":1,"WWW_PAGE_CREATION_FUNNEL":1,"NT_EXAMPLE_FUNNEL":1,"WWW_LIVE_VIEWER_TIPJAR_FUNNEL":1,"FACECAST_BROADCASTER_FUNNEL":1,"WWW_FUNDRAISER_CREATION_FUNNEL":1,"WWW_FUNDRAISER_EDIT_FUNNEL":1,"WWW_OFFERS_SIMPLE_COMPOSE_FUNNEL":1,"QP_TOOL_FUNNEL":1,"WWW_OFFERS_SIMPLE_COMPOSE_POST_LIKE_FUNNEL":1,"COLLEGE_COMMUNITY_NUX_ONBOARDING_FUNNEL":1,"CASUAL_GROUP_PICKER_FUNNEL":1,"TOPICS_TO_FOLLOW_FUNNEL":1,"WWW_MESSENGER_SEARCH_SESSION_FUNNEL":1,"WWW_LIVE_PRODUCER_FUNNEL":1,"FX_PLATFORM_INVITE_JOIN_FUNNEL":1,"CREATIVE_STUDIO_HUB_FUNNEL":1,"WWW_SEE_OFFERS_CTA_NUX_FUNNEL":1,"WWW_ADS_TARGETING_AUDIENCE_MANAGER_FUNNEL":1,"WWW_AD_BREAKS_ONBOARDING_FUNNEL":1,"WWW_AD_BREAK_HOME_ONBOARDING_FUNNEL":1,"WWW_NOTIFS_UP_NEXT_FUNNEL":10,"ADS_VIDEO_CAPTION_FUNNEL":1,"KEYFRAMES_FUNNEL":500,"SEARCH_ADS_WWW_FUNNEL":1,"WWW_ALT_TEXT_COMPOSER_FUNNEL":1,"BUSINESS_PAYMENTS_MERCHANT_ONBOARDING_FUNNEL":1,"MERCHANT_PAYMENTS_MERCHANT_ONBOARDING_FUNNEL":1,"SELLER_EXPERIENCE_ONBOARDING_NEW_FUNNEL":1,"SELLER_EXPERIENCE_PAYOUT_SETUP_NEW_FUNNEL":1,"SELLER_EXPERIENCE_SHOP_MANAGEMENT_FUNNEL":1,"WWW_BUSINESS_CREATION_FUNNEL":1,"WWW_BUSINESS_VERIFICATION_FUNNEL":1,"WWW_APP_REVIEW_BUSINESS_VERIFICATION_FUNNEL":1,"SELLER_EXPERIENCE_MIGRATION_FUNNEL":1,"SELLER_EXPERIENCE_PAYOUT_SETUP_FUNNEL":1,"PAYOUT_ONBOARDING_FUNNEL":1,"SERVICES_INSTANT_BOOKING_SETTINGS_FUNNEL":1,"SERVICES_FB_APPOINTMENTS_CTA_FULL_SETUP_FUNNEL":1,"SERVICES_FB_APPOINTMENTS_CTA_CREATION_FUNNEL":1,"FB_NEO_ONBOARDING_FUNNEL":1,"FB_NEO_FRIENDING_FUNNEL":1,"WWW_MESSENGER_CONTENT_SEARCH_FUNNEL":1,"SEARCH_FUNNEL":1,"SHADOW_SEARCH_FUNNEL":1,"SHADOW_EARLY_END_SEARCH_FUNNEL":1,"UNIDASH_EDIT_WIDGET_FUNNEL":1,"PRIVATE_COMMENT_COMPOSER_FUNNEL":1,"WEB_RTC_SCREEN_SHARING_FUNNEL":1,"CHECKOUT_EXPERIENCES_FUNNEL":1,"CHECKOUT_EXPERIENCES_SELLER_FUNNEL":1,"WWW_SERVICES_INSTANT_BOOKING_CONSUMER_FUNNEL":1,"WWW_SERVICES_BOOK_APPOINTMENT_CONSUMER_FUNNEL":10,"WWW_SPHERICAL_DIRECTOR_FUNNEL":1,"NATIVE_SUPPORT_FUNNEL":1,"WWW_PRESENCE_FUNNEL":1,"MESSENGER_UNIVERSAL_SEARCH_FUNNEL":1,"MESSENGER_SECONDARY_SEARCH_FUNNEL":1,"PRIVACY_SHORTCUTS_FUNNEL":1,"PRIVACY_ACCESS_HUB_FUNNEL":1,"WWW_POLITICIAN_OFFICE_SETTING_FUNNEL":1,"WWW_CIVIC_ACTION_POST_INVITE_FUNNEL":1,"WWW_MESSENGER_SHARE_FILE_PREVIEW_FUNNEL":1,"ALL_VOICES_FUNNEL":1,"AEC_APPLICATION_FUNNEL":1,"INSTANT_EXPERIENCES_MINDBODY_FUNNEL":1,"WWW_LAUNCHPAD_ONBOARDING_FUNNEL":1,"GIZMO_VCPANEL_CALL_START_FUNNEL":1,"WWW_FB_CHAT_NEW_SETTINGS_MENU_FUNNEL":1,"KAIOS_REG_CONTACT_IMPORTER_FUNNEL":1,"MAP_WEB_FUNNEL":1,"SOCIAL_VR_INTERACTIVE_THREE_SIXTY_FUNNEL":1,"WWW_SNOWLIFT_ACTIONS_FUNNEL":1,"SVC_DEPLOYMENT_ONBOARDING_FUNNEL":1,"FHT_FUNNEL":1,"default":1000}},1271],["WebDevicePerfInfoData",[],{"needsFullUpdate":false,"needsPartialUpdate":false,"shouldLogResourcePerf":false},3977],["VideoChannelViewVariables",[],{"defaultStoriesToLoad":3,"dark_mode":true,"autoplaySettingDisabled":true,"thumbnailRedesign":false,"dynamicAspectRatios":true,"wnsFromChannel":false,"preopenUFI":false,"channelRedesign":false,"channelPageTransitions":false,"channelPivots":false},989],["ImmediateActiveSecondsConfig",[],{"sampling_rate":0},423],["WebLoomConfig",[],{"interactions":[{"sample_rate":8,"trace_policy":null,"qpl_marker_ids":[30605313]},{"sample_rate":2,"trace_policy":null,"qpl_marker_ids":[30605354,30605315,30605384]},{"sample_rate":2,"trace_policy":"comet.home","qpl_marker_ids":[29818882]},{"sample_rate":8,"trace_policy":"comet.mediaviewer.photo","qpl_marker_ids":null},{"sample_rate":4,"trace_policy":"comet.popover","qpl_marker_ids":null},{"sample_rate":1,"trace_policy":null,"qpl_marker_ids":null}],"qpl_sample_rates":{}},4171],["IntlBCP47LocaleConfig",[],{"bcp47Locale":"fr-FR"},4448],["FbtQTOverrides",[],{"overrides":{}},551],["UFI2SilhouetteConfig",[],{"neutralSilhouette20":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t31.0-1\/c7.0.24.24a\/p24x24\/10733713_10150004552801937_4553731092814901385_o.jpg?_nc_cat=1&_nc_ohc=dIRbMy-welwAQnz66LkjTJV80vuRR0I315VEZwbq4hE8ntqDSyKfCYjIA&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=1029c56bb21891e3c63fa300a76d950c&oe=5E8F3F85","neutralSilhouette24":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t31.0-1\/c7.0.24.24a\/p24x24\/10733713_10150004552801937_4553731092814901385_o.jpg?_nc_cat=1&_nc_ohc=dIRbMy-welwAQnz66LkjTJV80vuRR0I315VEZwbq4hE8ntqDSyKfCYjIA&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=1029c56bb21891e3c63fa300a76d950c&oe=5E8F3F85","neutralSilhouette32":"https:\/\/scontent-cdg2-1.xx.fbcdn.net\/v\/t31.0-1\/c9.0.32.32a\/p32x32\/10733713_10150004552801937_4553731092814901385_o.jpg?_nc_cat=1&_nc_ohc=dIRbMy-welwAQnz66LkjTJV80vuRR0I315VEZwbq4hE8ntqDSyKfCYjIA&_nc_ht=scontent-cdg2-1.xx&_nc_tp=1&oh=44cb058c09a396889d2e8cab1c1f8fab&oe=5EB38EFD"},3283],["AdImpressionLoggingConfig",[],{"blockInvisible":true,"enableDelayedHiddenCheck":false,"disableActualCheck":false,"checkWholeAdUnit":false,"maxHiddenCheckDelay":5000,"logForHiddenAds":true,"runBotDetection":false,"enableWaitForDelayLog":true,"enableFlushDelayLogOnCleanup":true},2166]]});</script> <script>requireLazy(["ix"],function(ix){ix.add({"22701":{"sprited":true,"spriteCssClass":"sx_b980dd","spriteMapCssClass":"sp__jZ4pRfiS3z"},"26339":{"sprited":true,"spriteCssClass":"sx_cf8343","spriteMapCssClass":"sp__jZ4pRfiS3z"},"89108":{"sprited":true,"spriteCssClass":"sx_663b87","spriteMapCssClass":"sp__jZ4pRfiS3z"},"89336":{"sprited":true,"spriteCssClass":"sx_bb1975","spriteMapCssClass":"sp__jZ4pRfiS3z"},"101640":{"sprited":true,"spriteCssClass":"sx_1912cd","spriteMapCssClass":"sp_ddXiTdIB8vm"},"114186":{"sprited":true,"spriteCssClass":"sx_fb0cff","spriteMapCssClass":"sp_nUm-Frhgfk0"},"114322":{"sprited":true,"spriteCssClass":"sx_1ba9b8","spriteMapCssClass":"sp__jZ4pRfiS3z"},"114375":{"sprited":true,"spriteCssClass":"sx_b5ab60","spriteMapCssClass":"sp_3HImAxvwBdm"},"114570":{"sprited":true,"spriteCssClass":"sx_ed4cd6","spriteMapCssClass":"sp__jZ4pRfiS3z"},"114710":{"sprited":true,"spriteCssClass":"sx_18f062","spriteMapCssClass":"sp_3HImAxvwBdm"},"114783":{"sprited":true,"spriteCssClass":"sx_d84553","spriteMapCssClass":"sp_3HImAxvwBdm"},"114795":{"sprited":true,"spriteCssClass":"sx_983554","spriteMapCssClass":"sp_3HImAxvwBdm"},"115129":{"sprited":true,"spriteCssClass":"sx_87d9ac","spriteMapCssClass":"sp_qtp6H98Uhz5"},"115342":{"sprited":true,"spriteCssClass":"sx_1ee0e5","spriteMapCssClass":"sp__jZ4pRfiS3z"},"115705":{"sprited":true,"spriteCssClass":"sx_6ea994","spriteMapCssClass":"sp_ddXiTdIB8vm"},"115777":{"sprited":true,"spriteCssClass":"sx_3c4bd2","spriteMapCssClass":"sp__jZ4pRfiS3z"},"116731":{"sprited":true,"spriteCssClass":"sx_441800","spriteMapCssClass":"sp__jZ4pRfiS3z"},"117758":{"sprited":true,"spriteCssClass":"sx_1be120","spriteMapCssClass":"sp__jZ4pRfiS3z"},"119371":{"sprited":true,"spriteCssClass":"sx_b9302f","spriteMapCssClass":"sp__jZ4pRfiS3z"},"120765":{"sprited":true,"spriteCssClass":"sx_aee53f","spriteMapCssClass":"sp__jZ4pRfiS3z"},"121748":{"sprited":true,"spriteCssClass":"sx_eb2df6","spriteMapCssClass":"sp__jZ4pRfiS3z"},"121816":{"sprited":true,"spriteCssClass":"sx_eb149c","spriteMapCssClass":"sp__jZ4pRfiS3z"},"122642":{"sprited":true,"spriteCssClass":"sx_954ac5","spriteMapCssClass":"sp__jZ4pRfiS3z"},"124639":{"sprited":true,"spriteCssClass":"sx_f583e4","spriteMapCssClass":"sp__jZ4pRfiS3z"},"124971":{"sprited":true,"spriteCssClass":"sx_401691","spriteMapCssClass":"sp__jZ4pRfiS3z"},"125398":{"sprited":true,"spriteCssClass":"sx_d3579d","spriteMapCssClass":"sp_nUm-Frhgfk0"},"125727":{"sprited":true,"spriteCssClass":"sx_8609fa","spriteMapCssClass":"sp__jZ4pRfiS3z"},"127524":{"sprited":true,"spriteCssClass":"sx_e6c50b","spriteMapCssClass":"sp_qtp6H98Uhz5"},"352839":{"sprited":true,"spriteCssClass":"sx_9d1029","spriteMapCssClass":"sp_ddXiTdIB8vm"},"354763":{"sprited":true,"spriteCssClass":"sx_480dd1","spriteMapCssClass":"sp_3HImAxvwBdm"},"360715":{"sprited":true,"spriteCssClass":"sx_8d4d8a","spriteMapCssClass":"sp__jZ4pRfiS3z"},"374088":{"sprited":true,"spriteCssClass":"sx_b83c9e","spriteMapCssClass":"sp_ddXiTdIB8vm"},"390907":{"sprited":true,"spriteCssClass":"sx_d329a7","spriteMapCssClass":"sp_3HImAxvwBdm"},"390910":{"sprited":true,"spriteCssClass":"sx_c30eeb","spriteMapCssClass":"sp_3HImAxvwBdm"},"406916":{"sprited":true,"spriteCssClass":"sx_99369b","spriteMapCssClass":"sp__jZ4pRfiS3z"},"407577":{"sprited":true,"spriteCssClass":"sx_bacea2","spriteMapCssClass":"sp_ddXiTdIB8vm"},"409177":{"sprited":true,"spriteCssClass":"sx_bf80a8","spriteMapCssClass":"sp__jZ4pRfiS3z"},"409178":{"sprited":true,"spriteCssClass":"sx_84db43","spriteMapCssClass":"sp__jZ4pRfiS3z"},"409179":{"sprited":true,"spriteCssClass":"sx_0a9fac","spriteMapCssClass":"sp__jZ4pRfiS3z"},"409180":{"sprited":true,"spriteCssClass":"sx_f6fb3a","spriteMapCssClass":"sp__jZ4pRfiS3z"},"409181":{"sprited":true,"spriteCssClass":"sx_a3d1ee","spriteMapCssClass":"sp__jZ4pRfiS3z"},"412613":{"sprited":true,"spriteCssClass":"sx_d20242","spriteMapCssClass":"sp_3HImAxvwBdm"},"431972":{"sprited":true,"spriteCssClass":"sx_5b2a15","spriteMapCssClass":"sp_3HImAxvwBdm"},"443962":{"sprited":true,"spriteCssClass":"sx_433417","spriteMapCssClass":"sp_ddXiTdIB8vm"},"462853":{"sprited":true,"spriteCssClass":"sx_69dd2b","spriteMapCssClass":"sp_3HImAxvwBdm"},"462971":{"sprited":true,"spriteCssClass":"sx_0f645b","spriteMapCssClass":"sp_3HImAxvwBdm"},"462983":{"sprited":true,"spriteCssClass":"sx_a6602a","spriteMapCssClass":"sp_3HImAxvwBdm"},"462984":{"sprited":true,"spriteCssClass":"sx_85d40d","spriteMapCssClass":"sp_3HImAxvwBdm"},"462987":{"sprited":true,"spriteCssClass":"sx_1bb0b9","spriteMapCssClass":"sp_3HImAxvwBdm"},"462988":{"sprited":true,"spriteCssClass":"sx_f56647","spriteMapCssClass":"sp_3HImAxvwBdm"},"462991":{"sprited":true,"spriteCssClass":"sx_24d068","spriteMapCssClass":"sp_3HImAxvwBdm"},"462993":{"sprited":true,"spriteCssClass":"sx_289bbb","spriteMapCssClass":"sp_ddXiTdIB8vm"},"463003":{"sprited":true,"spriteCssClass":"sx_e3e9c5","spriteMapCssClass":"sp_3HImAxvwBdm"},"463005":{"sprited":true,"spriteCssClass":"sx_92e51a","spriteMapCssClass":"sp_ddXiTdIB8vm"},"463008":{"sprited":true,"spriteCssClass":"sx_e54a50","spriteMapCssClass":"sp_3HImAxvwBdm"},"463014":{"sprited":true,"spriteCssClass":"sx_40da0b","spriteMapCssClass":"sp_3HImAxvwBdm"},"463019":{"sprited":true,"spriteCssClass":"sx_ce09a1","spriteMapCssClass":"sp_ddXiTdIB8vm"},"463022":{"sprited":true,"spriteCssClass":"sx_fb2af4","spriteMapCssClass":"sp_3HImAxvwBdm"},"463031":{"sprited":true,"spriteCssClass":"sx_e5f326","spriteMapCssClass":"sp_3HImAxvwBdm"},"465765":{"sprited":true,"spriteCssClass":"sx_bd0643","spriteMapCssClass":"sp_3HImAxvwBdm"},"465766":{"sprited":true,"spriteCssClass":"sx_6cb92c","spriteMapCssClass":"sp_3HImAxvwBdm"},"465767":{"sprited":true,"spriteCssClass":"sx_0e0119","spriteMapCssClass":"sp_3HImAxvwBdm"},"465768":{"sprited":true,"spriteCssClass":"sx_7e871d","spriteMapCssClass":"sp_3HImAxvwBdm"},"466773":{"sprited":true,"spriteCssClass":"sx_f568df","spriteMapCssClass":"sp__jZ4pRfiS3z"},"467223":{"sprited":true,"spriteCssClass":"sx_b669ad","spriteMapCssClass":"sp_3HImAxvwBdm"},"467224":{"sprited":true,"spriteCssClass":"sx_f1ea22","spriteMapCssClass":"sp_3HImAxvwBdm"},"468574":{"sprited":true,"spriteCssClass":"sx_8e15e3","spriteMapCssClass":"sp_3HImAxvwBdm"},"477824":{"sprited":true,"spriteCssClass":"sx_ab5af9","spriteMapCssClass":"sp__jZ4pRfiS3z"},"480582":{"sprited":true,"spriteCssClass":"sx_e04d24","spriteMapCssClass":"sp__jZ4pRfiS3z"},"480590":{"sprited":true,"spriteCssClass":"sx_652f81","spriteMapCssClass":"sp__jZ4pRfiS3z"},"483131":{"sprited":true,"spriteCssClass":"sx_a4175b","spriteMapCssClass":"sp__jZ4pRfiS3z"},"495298":{"sprited":true,"spriteCssClass":"sx_49934e","spriteMapCssClass":"sp__jZ4pRfiS3z"},"495717":{"sprited":true,"spriteCssClass":"sx_a87803","spriteMapCssClass":"sp__jZ4pRfiS3z"},"499011":{"sprited":true,"spriteCssClass":"sx_db9ee7","spriteMapCssClass":"sp__jZ4pRfiS3z"},"506114":{"sprited":true,"spriteCssClass":"sx_95629b","spriteMapCssClass":"sp_3HImAxvwBdm"},"520746":{"sprited":true,"spriteCssClass":"sx_88ead1","spriteMapCssClass":"sp__jZ4pRfiS3z"},"621934":{"sprited":true,"spriteCssClass":"sx_4fcf73","spriteMapCssClass":"sp__jZ4pRfiS3z"},"660433":{"sprited":true,"spriteCssClass":"sx_ce2ccc","spriteMapCssClass":"sp_3HImAxvwBdm"},"797748":{"sprited":true,"spriteCssClass":"sx_658ad1","spriteMapCssClass":"sp_3HImAxvwBdm"},"909284":{"sprited":true,"spriteCssClass":"sx_7baf44","spriteMapCssClass":"sp_3HImAxvwBdm"},"936893":{"sprited":true,"spriteCssClass":"sx_2162b7","spriteMapCssClass":"sp_3HImAxvwBdm"},"936896":{"sprited":true,"spriteCssClass":"sx_19993c","spriteMapCssClass":"sp_3HImAxvwBdm"},"85423":{"sprited":false,"uri":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y7\/r\/pgEFhPxsWZX.gif","width":32,"height":32},"85426":{"sprited":false,"uri":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y9\/r\/jKEcVPZFk-2.gif","width":32,"height":32},"85427":{"sprited":false,"uri":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yk\/r\/LOOn0JtHNzb.gif","width":16,"height":16},"85428":{"sprited":false,"uri":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yb\/r\/GsNJNwuI-UM.gif","width":16,"height":11},"85429":{"sprited":false,"uri":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yG\/r\/b53Ajb4ihCP.gif","width":32,"height":32},"85430":{"sprited":false,"uri":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y-\/r\/AGUNXgX_Wx3.gif","width":16,"height":11},"347018":{"sprited":true,"spriteCssClass":"sx_fe5173","spriteMapCssClass":"sp_NnQJe0BAlA8"},"347022":{"sprited":true,"spriteCssClass":"sx_44a25c","spriteMapCssClass":"sp_ddXiTdIB8vm"},"347024":{"sprited":true,"spriteCssClass":"sx_eda318","spriteMapCssClass":"sp_NnQJe0BAlA8"},"412470":{"sprited":true,"spriteCssClass":"sx_14155b","spriteMapCssClass":"sp_NnQJe0BAlA8"},"476301":{"sprited":true,"spriteCssClass":"sx_d76dee","spriteMapCssClass":"sp_9wsS_kL3iqz"},"476302":{"sprited":true,"spriteCssClass":"sx_5f45ec","spriteMapCssClass":"sp_9wsS_kL3iqz"},"476303":{"sprited":true,"spriteCssClass":"sx_23679d","spriteMapCssClass":"sp_9wsS_kL3iqz"},"476304":{"sprited":true,"spriteCssClass":"sx_2120dc","spriteMapCssClass":"sp_9wsS_kL3iqz"},"476305":{"sprited":true,"spriteCssClass":"sx_694f30","spriteMapCssClass":"sp_9wsS_kL3iqz"},"476306":{"sprited":true,"spriteCssClass":"sx_0aea61","spriteMapCssClass":"sp_9wsS_kL3iqz"},"476307":{"sprited":true,"spriteCssClass":"sx_f14a23","spriteMapCssClass":"sp_9wsS_kL3iqz"},"476308":{"sprited":true,"spriteCssClass":"sx_6ef669","spriteMapCssClass":"sp_9wsS_kL3iqz"},"476309":{"sprited":true,"spriteCssClass":"sx_ec3f3b","spriteMapCssClass":"sp_9wsS_kL3iqz"},"476310":{"sprited":true,"spriteCssClass":"sx_40097f","spriteMapCssClass":"sp_9wsS_kL3iqz"},"488783":{"sprited":true,"spriteCssClass":"sx_849c03","spriteMapCssClass":"sp_3HImAxvwBdm"},"99652":{"sprited":true,"spriteCssClass":"sx_73419d","spriteMapCssClass":"sp_a0fiOGGaZHp"},"99653":{"sprited":true,"spriteCssClass":"sx_542b70","spriteMapCssClass":"sp_a0fiOGGaZHp"},"99654":{"sprited":true,"spriteCssClass":"sx_d96a0b","spriteMapCssClass":"sp_a0fiOGGaZHp"},"113894":{"sprited":true,"spriteCssClass":"sx_33b599","spriteMapCssClass":"sp_a0fiOGGaZHp"},"114228":{"sprited":true,"spriteCssClass":"sx_a7ba6d","spriteMapCssClass":"sp_p5nL84LTBIf"},"114492":{"sprited":true,"spriteCssClass":"sx_db4617","spriteMapCssClass":"sp_p5nL84LTBIf"},"114673":{"sprited":true,"spriteCssClass":"sx_67fa6b","spriteMapCssClass":"sp_p5nL84LTBIf"},"114860":{"sprited":true,"spriteCssClass":"sx_4259f4","spriteMapCssClass":"sp_p5nL84LTBIf"},"115160":{"sprited":true,"spriteCssClass":"sx_eade20","spriteMapCssClass":"sp_p5nL84LTBIf"},"119369":{"sprited":true,"spriteCssClass":"sx_1b6bde","spriteMapCssClass":"sp_a0fiOGGaZHp"},"125792":{"sprited":true,"spriteCssClass":"sx_10a746","spriteMapCssClass":"sp_UyQZRwqUYwK"},"126426":{"sprited":true,"spriteCssClass":"sx_e4611f","spriteMapCssClass":"sp_UyQZRwqUYwK"},"127093":{"sprited":true,"spriteCssClass":"sx_4633c7","spriteMapCssClass":"sp_p5nL84LTBIf"},"139486":{"sprited":true,"spriteCssClass":"sx_76ba59","spriteMapCssClass":"sp_p5nL84LTBIf"},"363444":{"sprited":true,"spriteCssClass":"sx_f6617a","spriteMapCssClass":"sp_a0fiOGGaZHp"},"363577":{"sprited":true,"spriteCssClass":"sx_0d59ed","spriteMapCssClass":"sp_a0fiOGGaZHp"},"365780":{"sprited":true,"spriteCssClass":"sx_271bd9","spriteMapCssClass":"sp_p5nL84LTBIf"},"480274":{"sprited":true,"spriteCssClass":"sx_ada235","spriteMapCssClass":"sp_a0fiOGGaZHp"},"601195":{"sprited":true,"spriteCssClass":"sx_988b4f","spriteMapCssClass":"sp_a0fiOGGaZHp"},"606470":{"sprited":true,"spriteCssClass":"sx_aa3948","spriteMapCssClass":"sp_a0fiOGGaZHp"},"608136":{"sprited":true,"spriteCssClass":"sx_ed9778","spriteMapCssClass":"sp_a0fiOGGaZHp"},"122454":{"sprited":true,"spriteCssClass":"sx_697653","spriteMapCssClass":"sp_UyQZRwqUYwK"},"138474":{"sprited":true,"spriteCssClass":"sx_308846","spriteMapCssClass":"sp_UyQZRwqUYwK"},"815712":{"sprited":true,"spriteCssClass":"sx_34cb5f","spriteMapCssClass":"sp_a0fiOGGaZHp"},"825000":{"sprited":true,"spriteCssClass":"sx_c7f08c","spriteMapCssClass":"sp_a0fiOGGaZHp"},"834159":{"sprited":true,"spriteCssClass":"sx_7aae58","spriteMapCssClass":"sp_p5nL84LTBIf"},"899682":{"sprited":true,"spriteCssClass":"sx_f2a8d2","spriteMapCssClass":"sp_a0fiOGGaZHp"},"374678":{"sprited":true,"spriteCssClass":"sx_00bc36","spriteMapCssClass":"sp_10gbA_8lOrs"},"141941":{"sprited":true,"spriteCssClass":"sx_d7a220","spriteMapCssClass":"sp_3HImAxvwBdm"},"142454":{"sprited":true,"spriteCssClass":"sx_580c28","spriteMapCssClass":"sp_3HImAxvwBdm"},"530511":{"sprited":true,"spriteCssClass":"sx_401f9e","spriteMapCssClass":"sp_C3bCylIXdkU"},"481775":{"sprited":true,"spriteCssClass":"sx_51a1a3","spriteMapCssClass":"sp_C3bCylIXdkU"},"478231":{"sprited":true,"spriteCssClass":"sx_6d5dbd","spriteMapCssClass":"sp_qtp6H98Uhz5"},"483829":{"sprited":true,"spriteCssClass":"sx_b32a74","spriteMapCssClass":"sp_C3bCylIXdkU"},"490583":{"sprited":true,"spriteCssClass":"sx_b76d84","spriteMapCssClass":"sp_C3bCylIXdkU"},"530512":{"sprited":true,"spriteCssClass":"sx_3f1dd1","spriteMapCssClass":"sp_C3bCylIXdkU"},"577043":{"sprited":true,"spriteCssClass":"sx_d0d28a","spriteMapCssClass":"sp_C3bCylIXdkU"},"912341":{"sprited":true,"spriteCssClass":"sx_1a3541","spriteMapCssClass":"sp_C3bCylIXdkU"},"621635":{"sprited":true,"spriteCssClass":"sx_6c6c33","spriteMapCssClass":"sp_qtp6H98Uhz5"},"481014":{"sprited":true,"spriteCssClass":"sx_8551d9","spriteMapCssClass":"sp_bt1f8lOW-dl"},"482978":{"sprited":false,"uri":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y6\/r\/PYhfKMFkiFc.png","width":16,"height":16},"512649":{"sprited":true,"spriteCssClass":"sx_d1c24b","spriteMapCssClass":"sp_aUqFM3-c0qK"},"478232":{"sprited":true,"spriteCssClass":"sx_e5b4a1","spriteMapCssClass":"sp_aUqFM3-c0qK"}});}); requireLazy(["gkx"],function(gkx){gkx.add({"677762":{"result":false,"hash":"AT5Zv2oL21bxHHUA"},"676936":{"result":false,"hash":"AT72qqLK-eH54iKW"},"676938":{"result":false,"hash":"AT6GuErVMoWZ84kH"},"678576":{"result":false,"hash":"AT4io2ycgB2HXFIv"},"678677":{"result":false,"hash":"AT6FEmhoYhgGhXvo"},"678704":{"result":false,"hash":"AT40Qi4x3I5S5xoK"},"678736":{"result":false,"hash":"AT6TaXmrJeVWMaXR"},"678893":{"result":false,"hash":"AT5u5WpCNtHjgJz1"},"681541":{"result":true,"hash":"AT7Wr9LluaSVGTAQ"},"778292":{"result":false,"hash":"AT7271lR-oQdtil8"},"797757":{"result":false,"hash":"AT46lK6x5Pu3PM6M"},"807517":{"result":true,"hash":"AT7125MwbSj_01LK"},"816873":{"result":false,"hash":"AT5wSF5WvsT7SlWW"},"832242":{"result":false,"hash":"AT5W2zNr7qOoZckt"},"845715":{"result":true,"hash":"AT4QdM_nb3-m5xWK"},"856871":{"result":false,"hash":"AT6F_E7IlaIsDmAs"},"865724":{"result":false,"hash":"AT7W50LJyjirgvgZ"},"901339":{"result":true,"hash":"AT79qGNn-IECAhUc"},"916141":{"result":true,"hash":"AT7f2O0tR84VD5Dn"},"945829":{"result":true,"hash":"AT52ALcdIlHfjScb"},"967666":{"result":true,"hash":"AT7Ahb2fy-wVsZH_"},"968609":{"result":true,"hash":"AT5KNPZIzm9vO6nj"},"971964":{"result":false,"hash":"AT4kyi6wWAas6R2Z"},"987139":{"result":false,"hash":"AT740h8wvaYDtWr7"},"1001007":{"result":false,"hash":"AT7bbf-tWkZxea83"},"1063360":{"result":false,"hash":"AT6tmJDyHBk3ocx2"},"1066746":{"result":false,"hash":"AT4ukeAbsQjlgiFz"},"1071407":{"result":true,"hash":"AT56EYf5qPYIaGfg"},"1104104":{"result":true,"hash":"AT6AzKiODjFlYF2S"},"1104105":{"result":true,"hash":"AT4J8QHHmIVmcJCF"},"1113562":{"result":true,"hash":"AT4AIHzDENWrdvnt"},"1118243":{"result":true,"hash":"AT5s5m4YWY-91ZNy"},"1166607":{"result":false,"hash":"AT5WkzrelzNqjXEd"},"1168511":{"result":true,"hash":"AT6XcZQXou7opMdC"},"1175809":{"result":false,"hash":"AT5TdFeqzuIM2Y_z"},"1186740":{"result":false,"hash":"AT7kGwNIf9iGWAry"},"1186990":{"result":false,"hash":"AT4rA5wSMYqj56Ye"},"1218754":{"result":true,"hash":"AT5ZRe7iMnuvdxiN"},"1218755":{"result":false,"hash":"AT7dAD0nYLi28415"},"1234252":{"result":false,"hash":"AT6ByZk_eet_F7Ve"},"1229480":{"result":false,"hash":"AT6VlPvVmtZaIvqi"},"820050":{"result":false,"hash":"AT7I8baGz_QJlkd-"},"876709":{"result":false,"hash":"AT7EhDDBmxGFlGIf"},"940796":{"result":false,"hash":"AT6ZEMT2TQGyyckW"},"961555":{"result":false,"hash":"AT5fJeyeoWlyxLOk"},"983221":{"result":true,"hash":"AT51yz75Hh87LCvL"},"1059877":{"result":false,"hash":"AT592xZo3XwAdK-M"},"677764":{"result":true,"hash":"AT6MQwC1iDO9kjQH"},"837029":{"result":true,"hash":"AT7NdAQ4dDCiZ_oL"},"676811":{"result":false,"hash":"AT6Foq3TzDG4ThdI"},"676930":{"result":false,"hash":"AT5EiSb4neTcIPLJ"},"678285":{"result":false,"hash":"AT70r7opq5ZhbR-r"},"695963":{"result":false,"hash":"AT5Lvo6cJ5Jj4e6R"},"1098171":{"result":true,"hash":"AT4F7zDoRmduaRqc"},"1166542":{"result":false,"hash":"AT5i8t6AgbSy5Pft"},"1210328":{"result":false,"hash":"AT7nmjWhYVYJtYWy"},"676834":{"result":false,"hash":"AT4f0UlOBhGysT4x"},"676931":{"result":false,"hash":"AT4YRQy1-ZPhIb4v"},"678269":{"result":false,"hash":"AT5Mz6hCjEQ9fyPE"},"678270":{"result":false,"hash":"AT7vZvIViNCBhwEP"},"678741":{"result":false,"hash":"AT46Eg3S11M9jR2g"},"678742":{"result":false,"hash":"AT44REh-0oOkTXQt"},"709988":{"result":true,"hash":"AT4eyXQNQ96twEVa"},"709989":{"result":true,"hash":"AT7_tIkRJ8Lrwxbr"},"833805":{"result":true,"hash":"AT5kTXgQESPEV8T-"},"885271":{"result":true,"hash":"AT6og9CTQGNBL-g6"},"900386":{"result":false,"hash":"AT6_lmH2JbfwpOvX"},"972601":{"result":false,"hash":"AT6276g-xvgM5gSZ"},"1113070":{"result":true,"hash":"AT6pCznMxakgOdgb"},"1144561":{"result":false,"hash":"AT7RY5PpoIakuQy7"},"1221798":{"result":false,"hash":"AT67Yda2A49kw1b8"},"678268":{"result":true,"hash":"AT61OdMU03oEed3p"},"819513":{"result":true,"hash":"AT4NzvIGh9b3d5F-"},"835509":{"result":false,"hash":"AT6MIk2WiJDuFXU9"},"890475":{"result":true,"hash":"AT4RSVMRB_umCEiv"},"900398":{"result":false,"hash":"AT4zKNsLu7INnGGq"},"937620":{"result":true,"hash":"AT7y_UqZm5VVtr5t"},"943109":{"result":true,"hash":"AT7RvE2v7pY-t_16"},"967282":{"result":false,"hash":"AT7a3-oKYEyc2C6I"},"1208662":{"result":false,"hash":"AT4QJdnVkpFrBsEc"},"678266":{"result":true,"hash":"AT4x2EzllBzK8ck1"},"678283":{"result":false,"hash":"AT47OhYXAMpSLm4y"},"678286":{"result":false,"hash":"AT7y39gDUMsxDCrK"},"685345":{"result":false,"hash":"AT4NeYHTP96qrHdm"},"925108":{"result":false,"hash":"AT6oxHN83Gk7mh7U"},"819236":{"result":false,"hash":"AT7mkDKrEJ8ATiSp"},"679542":{"result":false,"hash":"AT4Su2x05Ka8niiK"},"801076":{"result":false,"hash":"AT5OJKCQ5JKAgRGf"},"676888":{"result":false,"hash":"AT7GqkQ3nvP6qRrf"},"676889":{"result":false,"hash":"AT5wIak8PVmEoGW1"},"676890":{"result":false,"hash":"AT68AEwgLEa9oN6V"},"1136485":{"result":true,"hash":"AT5h6mEScMM5WbAI"},"1174477":{"result":true,"hash":"AT6rw5jcp9u6SxNZ"},"1237656":{"result":false,"hash":"AT5GM1w9xayEWEHA"},"807313":{"result":false,"hash":"AT4InJENfJNg6uod"},"1212841":{"result":true,"hash":"AT48kEjTHKY1KM4s"},"678125":{"result":false,"hash":"AT6L_-PsRyMFgOKb"},"1217314":{"result":false,"hash":"AT5pIjJriLxesNhe"}});}); requireLazy(["qex"],function(qex){qex.add({"1177410":{"r":null},"1180562":{"r":null},"1222999":{"r":null},"881636":{"r":null},"1080217":{"r":null},"1113951":{"r":null},"1115760":{"r":null},"1133283":{"r":null},"1187589":{"r":null},"724607":{"r":null}});}); requireLazy(["Bootloader"],function(Bootloader){Bootloader.setResourceMap({"rm2ch":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i0XN4\/yL\/l\/fr_FR\/4-lDo0Etbym.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"xV8PQ":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iD7x4\/yZ\/l\/fr_FR\/loWO6MERfR1.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"SEhma":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3igW24\/y8\/l\/fr_FR\/XqsTK2GWWQt.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"RYSN8":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iesQ4\/yO\/l\/fr_FR\/7E-h1mvSdBA.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"ihKKS":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y_\/r\/vKjmrH_o6ME.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"T5BQ8":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i6Kj4\/yZ\/l\/fr_FR\/IsdeIbk1Dm_.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"51yTN":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y4\/r\/SvZ8fnIHanA.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"tSrJ6":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i3du4\/yF\/l\/fr_FR\/t13oDNgFgBD.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"4UeD4":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y7\/r\/-nWhzZfSSqR.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Z88p8":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i_uz4\/yZ\/l\/fr_FR\/BsPO4-PFQ6i.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"0Wg8h":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i1v54\/yq\/l\/fr_FR\/K0zZHUtBeBv.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"nw7D1":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ibeF4\/y7\/l\/fr_FR\/Rys5dBkLE7e.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"0lLrn":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yw\/r\/vgooVJBbaAh.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"8ELCB":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ye\/r\/4c56_sYLseJ.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"+ClWy":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y_\/r\/HBJ1fqH-E0d.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"oE4Do":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y2\/r\/eAdKAwutbmm.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"fPThm":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i5RT4\/y4\/l\/fr_FR\/LCwBBVB0-re.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"k27RP":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y_\/r\/fZsHNgiudX4.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"40+zj":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ibWJ4\/yO\/l\/fr_FR\/JoDTQJC5jnt.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"QBYSY":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yj\/r\/wUGtGKjHJuF.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Dj4L0":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yi\/r\/wCDHcXIkM6a.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"DhoKa":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iek84\/y4\/l\/fr_FR\/cuGKYTbD_c8.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"7i5zN":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iedz4\/yX\/l\/fr_FR\/3SaZmErIHwP.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"lUGK9":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yi\/r\/a4shM3SLAXv.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"nOigL":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iy_Q4\/yj\/l\/fr_FR\/0wafHb4JzK5.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"SIxWW":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iP-u4\/yR\/l\/fr_FR\/ingYbClAoG-.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"tQxdF":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yF\/r\/honLsRgASuP.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Zog71":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iYYM4\/yA\/l\/fr_FR\/5uipcm_gEKy.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"kBSCG":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iktg4\/yw\/l\/fr_FR\/rP5AIp_Buja.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"qLeWq":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3irvU4\/y1\/l\/fr_FR\/G8sLYynons-.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"To+dX":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3irvU4\/yp\/l\/fr_FR\/gG9iKpCGvdF.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"r0iEM":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iuSJ4\/ye\/l\/fr_FR\/mblTW_XYCzR.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"5HMsi":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i0cw4\/yF\/l\/fr_FR\/VreG_qodKsU.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"q8aAI":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ys\/r\/mW54bDLx3pe.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"SMErT":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y_\/r\/Ksq2OvARUro.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"pEk\/g":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y5\/l\/0,cross\/2-hxTBPRS29.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"J09Lk":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i7Wm4\/y8\/l\/fr_FR\/X0WWvZufL61.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"faR6u":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ya\/l\/0,cross\/K9HDCC8MWfh.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"Jr3Bg":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iaNG4\/yb\/l\/fr_FR\/GKKonaIEh_g.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"gTT3H":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i3zB4\/yy\/l\/fr_FR\/NQZ_Ckn-Bhb.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"lBcqb":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yT\/r\/No1scP7KEjY.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"jEALs":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yC\/r\/JCCSCgwitjX.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"SK4Vk":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ijSc4\/yO\/l\/fr_FR\/O-BLY1HmC50.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"1KdY2":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y2\/r\/qzTIPKnL3ao.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"jjYkh":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3imO84\/y3\/l\/fr_FR\/EprnJRV0oGm.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"11wT6":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yC\/r\/wDjJkvVOKW9.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"pQqPt":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iPjs4\/yJ\/l\/fr_FR\/vk2h69NyXJ8.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"w8GPS":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yE\/l\/0,cross\/IDDg690eZxG.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"jQ2oA":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iYWi4\/yx\/l\/fr_FR\/z70D6mA8Gx_.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"IzDvI":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yd\/r\/lLmjOaAj6eD.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"bPItP":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yw\/l\/0,cross\/GEW3g69h9u8.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"yEyx9":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iZSv4\/y6\/l\/fr_FR\/8drq0FA2nO0.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"ISTT9":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ilL34\/yP\/l\/fr_FR\/M0k_94jz2eQ.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"oAks5":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yr\/r\/3qKDoTrRSfg.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"6qS6E":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y4\/r\/2nRoecxgMw2.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"GUwm5":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ys\/r\/ZyhS-k1cbmn.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"\/5DSF":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i-LE4\/y5\/l\/fr_FR\/xEigKGBAUsC.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"ZwouJ":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iuKv4\/yH\/l\/fr_FR\/TNt4DJmHoca.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"N1qgl":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yy\/r\/1-1JdAq4pcY.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"PyR5u":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yA\/r\/LM7RIAiWOU6.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"wqYWn":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i26b4\/yn\/l\/fr_FR\/v8XbNxhic2t.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"ntaFj":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yu\/r\/s_hhmAMRIj9.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"\/Nybe":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i9FL4\/yW\/l\/fr_FR\/WQjcw6In3di.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"30wmF":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y6\/r\/VjqQGLRhqLA.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"eU5GU":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yw\/r\/HxQam_mtULy.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Ar48s":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yX\/r\/HgYNw0e3ylc.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"cPQrt":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y6\/r\/Kr-WlSoryu5.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Hfe+3":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yx\/r\/PVNMZmSGsR1.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"x9Rja":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yS\/r\/Yv5iWLcSNEn.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Lhx91":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ys\/r\/9pDJLlzEjrV.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"w9tbR":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yk\/r\/CEx7yV-yLBC.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"PwBfj":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yf\/r\/j4KseXyOy0G.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"27CmT":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ipF44\/yW\/l\/fr_FR\/7LttnWKQHGT.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"ouAaD":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yK\/r\/I72rRd7HgFQ.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"lwGlf":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yG\/r\/HMsn9GBWjVq.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Hwxrn":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yC\/r\/7mKJCWx645h.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"trA+M":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i6Se4\/yv\/l\/fr_FR\/9oqhXHb3ZUP.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"n3CYQ":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yC\/r\/ghDeuIacXDA.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"RhuQ9":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ikR24\/yK\/l\/fr_FR\/-3zSg0ilQdG.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"y\/7gK":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yE\/r\/OErGtV3WJ9O.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"jY1Qu":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ijrI4\/yG\/l\/fr_FR\/q-8P4zXCbSs.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Xc0AY":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yh\/l\/0,cross\/fMBtwfk1ISA.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"I4qBG":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ipoU4\/yF\/l\/fr_FR\/3ipJwAttDRF.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"9fJ33":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3icSg4\/yc\/l\/fr_FR\/pU3P2rL2oNc.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"ngE4J":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y1\/r\/055TBgdF5jW.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Jh1qa":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iRD44\/yx\/l\/fr_FR\/Yi-TIV_8cOD.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Kz6X0":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iPwU4\/yA\/l\/fr_FR\/1IpWkl5piIW.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"2dc0z":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yY\/r\/gsHlOfin0LO.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"UwLvl":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yL\/l\/0,cross\/hH6xxtTdyxK.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"NGAcI":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yV\/l\/0,cross\/5TWFW3ZJLy4.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"pPPG+":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i0ZM4\/yr\/l\/fr_FR\/bBT845l7M-k.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"XDoA0":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iKLY4\/yo\/l\/fr_FR\/KgEoFMZDbz2.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"v6cfL":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yt\/l\/0,cross\/IcDIsndz9sW.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"s5BQL":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iUU24\/yk\/l\/fr_FR\/OKvb7kaVS-1.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"yYlKk":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yL\/r\/KAn_-0Pg1aR.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"tUYls":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yE\/l\/0,cross\/OBlm4NlvEZN.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"MVwE9":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iFVy4\/yM\/l\/fr_FR\/LQaB-RtWcMR.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"0+vnD":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iqgD4\/yz\/l\/fr_FR\/OiecgCDhjAI.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"G2jm+":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yf\/l\/0,cross\/G3zaG_zLRHG.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"QGk8\/":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ip714\/yj\/l\/fr_FR\/6-l9yzPzrBK.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"P5MDl":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y-\/r\/Fz51RleEN8p.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"yyld4":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yx\/r\/OsQOXiYYNG8.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"dUQGr":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yG\/r\/_hQXGcoPMcS.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"+zRTC":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iM_J4\/y5\/l\/fr_FR\/byID8ayaPt5.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"sK9jR":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iSFM4\/yj\/l\/fr_FR\/HQeGMUryCfO.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"1+i5d":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iwMm4\/y6\/l\/fr_FR\/7ch-xnUq31G.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"uhlnB":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iVTY4\/yi\/l\/fr_FR\/A4SWKeiVq66.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"po2\/O":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3it9G4\/yT\/l\/fr_FR\/qhpvhoGf4fd.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Nj7kK":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yD\/l\/0,cross\/QnRPs4W8TI6.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"VvVFw":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yc\/r\/8uSRVThd7c-.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"rN+DP":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iS584\/yV\/l\/fr_FR\/RhBQKK_ok6G.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"5\/qRq":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3igDY4\/y_\/l\/fr_FR\/nJKTdXfTqZQ.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"zLpUS":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y8\/l\/0,cross\/4kKo66G5TtV.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"BZIND":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yC\/r\/eREWAOJk2LM.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"NDtre":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yj\/r\/VBnWYszC_Ah.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"FbEk3":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yF\/r\/HdKox0LvHV3.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"eYnZe":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iXY54\/yP\/l\/fr_FR\/chxeWP_sJsZ.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"64aRI":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i_fA4\/yd\/l\/fr_FR\/eEJIC_IN29x.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"keBrz":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yq\/r\/pGMXYtEwcvf.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"ilIyQ":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i7oo4\/y6\/l\/fr_FR\/Jfrfr4sCtzc.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"9LpRR":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ipiU4\/yy\/l\/fr_FR\/d8be9ygZ9Qu.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"FF1Rj":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iDSN4\/yN\/l\/fr_FR\/szfKToBIU_P.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"0hash":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yG\/r\/Pzf8RID65Qv.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"6Fkk7":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yG\/r\/BqyvmYBRrCl.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"HiP2n":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iqcW4\/yH\/l\/fr_FR\/k69H7fxI7-e.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"NrZ0u":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3id1O4\/yd\/l\/fr_FR\/Zr84cRXx_Jr.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"upWiN":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iv_54\/ye\/l\/fr_FR\/BpP3HSbE6sw.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"pcPAJ":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i8HT4\/yD\/l\/fr_FR\/0mrx2b_byox.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"QJpJT":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yt\/r\/6LXu_HGiYer.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"b9A3+":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yn\/r\/gAcRyGq1FsQ.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"2YdyO":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yV\/r\/WaM-9IhLGek.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"TRLBY":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iV1e4\/yb\/l\/fr_FR\/U_nJX5PylmP.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"YfV8d":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iGlb4\/yv\/l\/fr_FR\/aK78s8a9o9Y.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"8\/6en":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i6ie4\/yz\/l\/fr_FR\/XqgI5QpF4bm.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"R3xsy":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3inh04\/yn\/l\/fr_FR\/ZKQctVfzKeU.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"6kgLx":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yp\/r\/FojZ7hUVElT.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"aNAVU":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yG\/l\/0,cross\/boYEVtv_V59.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"v2nGa":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ys\/r\/aTXB0FyBUbt.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"uDRSi":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yx\/l\/0,cross\/cZJ4m2Bnbyd.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"2Sgzd":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iMf34\/yC\/l\/fr_FR\/3KeJ-VxUK16.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"DyLM9":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i-H24\/ym\/l\/fr_FR\/HZaMrhz2LFP.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"qumKy":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3in4D4\/y4\/l\/fr_FR\/vnKeF185W0r.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"mO9SG":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yD\/r\/aif3qxstBRy.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"OEc2m":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yM\/r\/56g7-evCzSy.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"2\/maQ":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y6\/r\/O1evg4NvCzK.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"5vrXt":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iFgV4\/yb\/l\/fr_FR\/kijiPrWo9rx.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"\/mnVq":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i6Zu4\/yp\/l\/fr_FR\/0oFMraF1OH3.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"R4K0F":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yu\/r\/aT08GJFujID.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"kT\/vD":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iTt-4\/yN\/l\/fr_FR\/i5y_oJfR77X.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"syI6x":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ingO4\/yq\/l\/fr_FR\/Ukn8vY2lW-k.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"D663E":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iOAd4\/yd\/l\/fr_FR\/AfzgpPEfNF1.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"i1BLU":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yY\/l\/0,cross\/tn40Dgao7qD.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"8JsHK":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yT\/l\/0,cross\/I5CVWGz6zAu.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"ajmNg":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i5uo4\/y4\/l\/fr_FR\/vOmF59CJOI4.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"CPmkK":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ihe14\/y-\/l\/fr_FR\/ZzOYDhnjxp4.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"9ac\/e":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ye\/r\/KTNnB7czq6D.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"liORJ":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yH\/r\/k9DO4rCKj0K.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"gcDYl":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yV\/r\/KVM3qKQ7kj4.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"tBF0I":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yN\/l\/0,cross\/QcTR3kz9PFD.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"ua3bD":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3id9u4\/y1\/l\/fr_FR\/kErEW-2PDMR.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"zTgMw":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yH\/r\/aSl_rBbyO2s.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Tkr6T":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iWgh4\/y0\/l\/fr_FR\/WEwZ-5_xpLC.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"vePHR":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iJPy4\/yJ\/l\/fr_FR\/L4R-svvss6W.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"QWswh":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yk\/r\/jN3zZ-uHs9m.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"aF9iP":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iek84\/yZ\/l\/fr_FR\/PKalrNyamlU.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"1XgS\/":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iPOs4\/yP\/l\/fr_FR\/EXPDbnqa1Tq.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"eJrfj":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yx\/r\/qdqWv3QNPPl.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"WhvCI":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i4zw4\/yJ\/l\/fr_FR\/mqV3poLBkjx.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"HO1KZ":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ihjj4\/yg\/l\/fr_FR\/BB9UB2hB4Uo.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"9MqX9":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iN154\/y9\/l\/fr_FR\/yE1Q2FhHsEC.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"y\/\/8P":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iFnY4\/yi\/l\/fr_FR\/EbBXiNsk0SB.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"NyxKb":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iaFn4\/yf\/l\/fr_FR\/ohvlvrkh6yS.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"NYwGO":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i4Jo4\/yB\/l\/fr_FR\/0Cz6oHkkZ7s.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"7S171":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yj\/r\/g83Kre_K4mw.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"145Eo":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yT\/r\/8tQul6_dIbW.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"ZU1ro":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yU\/r\/QKWIqWeZBgJ.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Hx+az":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yf\/r\/zO5MojAgN8I.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"uYbVb":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yO\/r\/yncgZiC7BC6.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"sGe+Z":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ya\/r\/JjU0WcjV29H.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"9Zaf3":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yA\/r\/dQ_TzJobF0o.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"hIek+":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yY\/r\/DZ_VBlsy-dC.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Uainn":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yG\/r\/BiZPGe1lkZi.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"QeMV0":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iSlj4\/yF\/l\/fr_FR\/G75h1KrzsPB.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"+CVWs":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i29U4\/yx\/l\/fr_FR\/sC4w-5yE_NH.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"woilf":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iRa64\/ye\/l\/fr_FR\/b2eGgUMJCER.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"R\/GuS":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yG\/r\/lL4fm0uXjzs.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"MnwA3":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iT4e4\/y1\/l\/fr_FR\/OLUk62qhP5y.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"H75eG":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i_hL4\/yd\/l\/fr_FR\/UbcupCnQY87.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"iFIJS":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iDf34\/yt\/l\/fr_FR\/MXsbZ9Hfq6K.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"prsk2":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iLFc4\/yW\/l\/fr_FR\/VJTZCGvSqW3.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"C5ICj":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yr\/r\/WC9l976-rqF.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"J3FJG":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yy\/r\/EsvB4v0Xcs2.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"IUO2m":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ihpA4\/ym\/l\/fr_FR\/caWhJftOhWP.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"wX6vm":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ye\/r\/8JbddmyOsNn.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"YLjVu":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iI254\/yu\/l\/fr_FR\/lejuCIaS4_G.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"1+ies":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3isBV4\/yu\/l\/fr_FR\/V15se6xfXPy.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"fpTka":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yb\/r\/qeRbOnSSaRI.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"KQ+lo":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yy\/r\/5bb_sdkg9yj.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"2gNYY":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yZ\/r\/UgGI7MFpX8H.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"M+waY":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yD\/r\/a9KZWNiAzbu.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"WMm0L":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ym\/r\/SVrkqyZ0-BS.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"0cIw6":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y1\/r\/gWtmWX_RZJ4.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"E9ERs":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ye\/r\/eoLjgHLVWb7.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"l4Pzl":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yD\/r\/s44UCekrM4c.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"3UpiF":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yH\/r\/5tJCqbK41Gs.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"88Pbc":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yw\/r\/B1uYMfQnIbG.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"eoynD":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y4\/r\/ACHhMZfSpbW.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"CZBm4":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yr\/r\/N36eb89qkZg.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"r4Fh3":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y9\/r\/EOoHuLJ2KPA.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"cumX1":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yx\/r\/5LW9dpTzGsF.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"thnei":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3itV74\/yO\/l\/fr_FR\/lco3wrfN1-c.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"P7N\/4":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ieHN4\/y_\/l\/fr_FR\/vPgdo3DlkTv.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"bmJyN":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yB\/r\/pJVQZrk9IsQ.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"4UFZm":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iQUI4\/y-\/l\/fr_FR\/uC7fLKfB2nP.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"04xdB":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yH\/r\/EIP8X4aUlSk.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"vqW6w":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yU\/r\/H1Chz9_aeen.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"VUABt":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yQ\/r\/W9qrNxMA_zR.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"fh4tn":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ivR74\/yq\/l\/fr_FR\/VlUqbuXQRZn.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"1nOAl":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ig_64\/yq\/l\/fr_FR\/LQdLgLlyUUR.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"WBj+Z":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iEav4\/yr\/l\/fr_FR\/ymsZrszJY3Y.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"JwwzR":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iboY4\/yp\/l\/fr_FR\/aN5RQbfnpj3.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"dB7RV":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ilI84\/yp\/l\/fr_FR\/ChYxS8JTTZ3.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"pL+2L":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yp\/r\/Wp8FsIGDGR8.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"KVdsT":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yo\/r\/NdGqzQUlIUI.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"xZkBE":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ikP14\/yD\/l\/fr_FR\/6MWo9iqxhZv.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"G7B0B":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yE\/r\/WBngDmzdoEe.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"L\/iQe":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yh\/r\/w40BMLBo5Ac.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"ruhOs":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i3FH4\/yC\/l\/fr_FR\/8rwl0vmj52Q.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Nz0l9":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ingu4\/yl\/l\/fr_FR\/2eKOIEb7epE.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"5\/u6t":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iQ0r4\/yu\/l\/fr_FR\/vWwdNpNlHRB.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"dPkof":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yR\/l\/0,cross\/TlEMk_WkBjn.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"MRigG":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iek84\/y8\/l\/fr_FR\/CtH5OV2qa1V.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"NM4pb":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y0\/r\/TPDLt4h83AF.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"ohdL0":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yu\/r\/LlJy1Thy1Em.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"WIxL5":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yN\/r\/egRi4613s5K.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"+GaxX":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yh\/r\/ApB7sDCFM6V.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"2PvFj":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y9\/r\/KGFefozfVtA.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"VFaYD":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yL\/r\/QCEvtudUTaE.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"xGEBJ":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3igmo4\/yI\/l\/fr_FR\/nkDy_oVMqx6.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"HVwj\/":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yU\/l\/0,cross\/qqze_te1xJN.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"oAS9G":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iwQo4\/y6\/l\/fr_FR\/GdP2kykSjH2.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"jxmGi":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iHPC4\/yV\/l\/fr_FR\/ekKwOX63kOB.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"P0wre":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3imjZ4\/yP\/l\/fr_FR\/cWVjGtylCkU.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"QGkap":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ipZp4\/yF\/l\/fr_FR\/kBzcTkNu_Bp.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"uPN\/2":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iOUR4\/yV\/l\/fr_FR\/8N5_YX9Ttzm.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"0ZvA\/":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i38g4\/yi\/l\/fr_FR\/D011nC5wIPL.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Mb1fd":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iTop4\/y2\/l\/fr_FR\/O_ORYaq7D7r.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"989n2":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iNx44\/yT\/l\/fr_FR\/-VXZywP9jah.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"IOyuU":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yr\/r\/G3NJTdTxX7D.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"JGyAf":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yO\/l\/0,cross\/V0TDN8B_Hdd.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"C+SM\/":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ioqW4\/yT\/l\/fr_FR\/ThmHO8EmsC7.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"0v71u":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i4VE4\/yC\/l\/fr_FR\/Fe_a2X_73X4.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"+QugF":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iQFb4\/ym\/l\/fr_FR\/diGtimKwQm2.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"FAq7+":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iomm4\/yb\/l\/fr_FR\/2LxsPLoxvVt.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"RaonM":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i7lV4\/yM\/l\/fr_FR\/giJvGp4cBhn.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"LDPcl":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ilr14\/yz\/l\/fr_FR\/fKPbnDTwgz9.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"fB80B":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iRgM4\/ym\/l\/fr_FR\/05vj1V5rbT7.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"LaGCf":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i-Yd4\/yh\/l\/fr_FR\/Tj1bU6raRyE.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"JoEMT":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yd\/r\/8xpbz7LdgkU.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"bIfxC":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iOvL4\/yf\/l\/fr_FR\/738YEc_s5OG.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"W7U++":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iFjA4\/ya\/l\/fr_FR\/dhDeeauzFSB.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"3TOkd":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iPi84\/ys\/l\/fr_FR\/WPwE8YCvbO1.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"L4Ew5":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yC\/r\/oRZFjy00Bs9.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"ZhD31":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iJUt4\/yQ\/l\/fr_FR\/EMzNoJMiqQI.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"add90":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ipOl4\/yE\/l\/fr_FR\/KrR-9Z-Qub1.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"k5FHv":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yj\/r\/Jp3qX9lDTrt.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"5ducr":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iLQf4\/y9\/l\/fr_FR\/rojDQGArhok.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"nAKA5":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iOaQ4\/yy\/l\/fr_FR\/DuRia5PJNIk.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"TYMlP":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iNLg4\/ym\/l\/fr_FR\/DpoB5ZSA8bI.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"M6CPB":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iXjz4\/yl\/l\/fr_FR\/GMsJFcQfnr_.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"qsYFI":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yK\/r\/6aYleUCJx3i.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"p8LuQ":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yX\/r\/FJB874YU0J5.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"BSrOo":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iwos4\/yJ\/l\/fr_FR\/NP0Kv46z5UC.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"UJYp8":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iucM4\/yG\/l\/fr_FR\/dB6GuzPDWeQ.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"0YIb\/":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ye\/l\/0,cross\/MOUL0KHvXab.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"gRKg2":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ixum4\/yB\/l\/fr_FR\/DCv3UsmODQl.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"3gDmv":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ir-t4\/ym\/l\/fr_FR\/OVqK2WL-iHP.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"RHYGU":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yJ\/l\/0,cross\/6cmC-AKNld5.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"wVhUn":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iPSR4\/yx\/l\/fr_FR\/Lz-u-nC3lW1.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"cPmCZ":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ihpN4\/yY\/l\/fr_FR\/A6BBs5zlGO4.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"XrsMr":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yI\/r\/Z6pSJOAkz0u.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"5xMHb":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3idxX4\/yL\/l\/fr_FR\/CbceCxw6KyH.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"n0fh6":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yl\/r\/K9pjCQUFRJw.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"p9Dq+":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yh\/r\/S-Um9sr-5in.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"EAjeX":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3izEa4\/yW\/l\/fr_FR\/3YR4-0IQzqN.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"WfvyT":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iNqK4\/yV\/l\/fr_FR\/kN0MDWn6DZB.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"y9nqs":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3isNO4\/y3\/l\/fr_FR\/XLFQiwR_bV-.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"G6XJv":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iDjq4\/yJ\/l\/fr_FR\/NCGud5oo_fQ.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"1AHFq":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ikYG4\/yD\/l\/fr_FR\/15VyAi2w2NR.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"jfPF1":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yG\/l\/0,cross\/lTCuu4mIm_h.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"hlLKO":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3isbc4\/yF\/l\/fr_FR\/-60ce4eS66E.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"V74nh":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iLYI4\/yP\/l\/fr_FR\/DDBRZTSMhbk.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"ifqFW":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i4a94\/yD\/l\/fr_FR\/mhNU9Z777rF.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"xKqRh":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iMp64\/ya\/l\/fr_FR\/Az_npFpGIuf.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"pbQ27":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yU\/r\/d67Zs_8kN2C.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"owmMR":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3inL74\/y9\/l\/fr_FR\/zP3aO-l6uKc.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"T\/bbO":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yo\/l\/0,cross\/zyqMe4ktW0x.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"bkueN":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iPK94\/yi\/l\/fr_FR\/IA4hx9e-Ty9.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Buh6M":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ixAW4\/ys\/l\/fr_FR\/qVli68t0AdB.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"DfLs\/":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i0-t4\/yN\/l\/fr_FR\/lqq5MWI3eWH.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Ewhs3":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i0f14\/yY\/l\/fr_FR\/VNlCPGrcCun.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"8TzMr":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yz\/l\/0,cross\/Odug1Mvf5vg.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"Uikak":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yk\/r\/j3-XSvWkapo.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"ab0Pn":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iA_w4\/y7\/l\/fr_FR\/tSHvs_MFe0i.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"qAR1V":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y5\/l\/0,cross\/xEPu8dtEyJy.css?_nc_x=Ij3Wp8lg5Kz","nonblocking":1,"nc":1},"7AR0M":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yO\/l\/0,cross\/hn5cfZTi4IY.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"s6cwG":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yq\/l\/0,cross\/AgzM1zMoIQM.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"+CrQQ":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yI\/r\/yAu5vzA1E4-.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"ud8fm":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yk\/l\/0,cross\/yDNT5z89g2v.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"qhlyu":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yu\/l\/0,cross\/uONn5j4NNhx.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"Sp+ie":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3idL74\/yK\/l\/fr_FR\/JQuSqRdFf7E.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"a1Ynl":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yi\/r\/mEY7sybUj-8.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"7B7KV":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iAE74\/yk\/l\/fr_FR\/kr8IJvzkGNb.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"HKZsO":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iu5t4\/yl\/l\/fr_FR\/FY1EanfX2TW.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"U38Rt":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yw\/l\/0,cross\/1LTuuJRPIUV.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"8bmT9":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yC\/r\/gGgm3hOvqKk.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"n3XWt":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yb\/r\/GG7wRGLQRSl.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"ZuDLd":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y0\/r\/1P6EqltvEgR.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"qZB9j":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yS\/r\/F8ndi--gb6M.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"67R\/7":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yd\/r\/jW7Dvsj8ssq.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"mWYtD":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yj\/r\/i5mkM4kVeTI.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Hr59R":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yc\/r\/3sw78wgcdq_.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"4eFD9":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yU\/r\/4hZkwJSyIZ6.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Qo8hB":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yh\/r\/l2vVpfPhJyf.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Hs4kZ":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i0e44\/y1\/l\/fr_FR\/IVLH31A5QI3.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"bqGgE":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yS\/r\/ip81606_v_D.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"xMvz3":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yf\/r\/fTXJkLvZHin.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"npASl":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yM\/r\/NcHZe4djTm4.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"HYsPF":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yv\/l\/0,cross\/--nvU_5mlcI.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"FfM3H":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ivcO4\/y4\/l\/fr_FR\/xJwykowE-pk.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"NsNtU":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3igLA4\/yG\/l\/fr_FR\/Oyvf1XmdpVd.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"W9QGd":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i6DM4\/yQ\/l\/fr_FR\/7HVzSLjJT7k.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"T7b+m":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yT\/r\/ol16wTkkDFb.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"9vsls":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i5Ai4\/yP\/l\/fr_FR\/5BTGhU6dcyG.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"VaLjK":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3izjh4\/yV\/l\/fr_FR\/5UG0FFuZ6mf.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"79L46":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yv\/l\/0,cross\/wGB-OrTQDYq.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"veq2f":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yA\/l\/0,cross\/cPTtbowIe17.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"KtWKW":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yC\/l\/0,cross\/DTIJUIKj3o0.css?_nc_x=Ij3Wp8lg5Kz","nonblocking":1,"nc":1},"W5G9l":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yH\/r\/v1vk1BMhxv7.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"ki0mE":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yp\/r\/LqUedI1-Zqp.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"2B1a0":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y1\/r\/j-NrNjZm5Te.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"JgnSD":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iw564\/yV\/l\/fr_FR\/ZPeZBatqHNz.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"krylL":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yj\/r\/V8tAYR1_MdG.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"mXK\/M":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i0SB4\/yZ\/l\/fr_FR\/TXSwE57PrXM.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Ob5Fh":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3inLk4\/yr\/l\/fr_FR\/8-LGLy1gfLU.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"R46b9":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yt\/r\/0gfimTFawEb.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Fp8C6":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ik1x4\/yU\/l\/fr_FR\/Qd3vAFnB788.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"29pR\/":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yI\/l\/0,cross\/fEc6SwUB7st.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"VSt0C":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yD\/l\/0,cross\/7ZodvWNonKJ.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"ma1kl":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yD\/l\/0,cross\/usMENTtBVsV.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"LI\/8K":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iIJ64\/yO\/l\/fr_FR\/7VGiIqXAiaE.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"ww+ZO":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yQ\/l\/0,cross\/0aBVisivYTP.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"cYJiG":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yU\/l\/0,cross\/Kb5akMZr182.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"wxVMg":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yR\/r\/2mZvuH_AKAR.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"yXLBV":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yz\/l\/0,cross\/AWafZIOMGOf.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"XBlzS":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yb\/r\/5jXUMTU0tKf.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"PsXzn":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yN\/r\/7hySFSLIZxp.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"LKWZA":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yW\/l\/0,cross\/6EWkxPOECbq.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"W1jDj":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ipTd4\/y2\/l\/fr_FR\/D9rDREJm3Zq.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"2f+r9":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yV\/r\/XNNnu5MYcfJ.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"UQjGy":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yO\/r\/SpmdeEiA4se.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Vb9NR":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iuv94\/yj\/l\/fr_FR\/cWAN7-Hy1uu.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Tca5I":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ys\/r\/R7CGvqMF4jf.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"mZ2TX":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yt\/r\/DLHKFZmuNhz.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"4z0Qn":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iaLA4\/yW\/l\/fr_FR\/HDz0uRq3XEs.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"qlMhz":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yd\/r\/hr7VpHtx8Ys.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"QTUih":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iG084\/yE\/l\/fr_FR\/mNDh7M0XbBk.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"QQpO9":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3igRJ4\/ys\/l\/fr_FR\/FL3hJ_l8s17.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"bmIyz":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iE8a4\/yY\/l\/fr_FR\/6Oak4CQK5bY.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"0XyVw":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yI\/l\/0,cross\/bhzIT1A6QdH.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"5tvmb":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iyRd4\/yG\/l\/fr_FR\/-Xl3Zda0mjT.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"XPWTT":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yo\/l\/0,cross\/9Tv-g8llO6b.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"tLKRC":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iFYg4\/y3\/l\/fr_FR\/KrXTLrAsbOr.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"9yUr1":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yF\/l\/0,cross\/cDAbnxi169n.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"IpY64":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3inNi4\/yx\/l\/fr_FR\/HIpOjwxnUQF.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"mZu06":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i_9h4\/yV\/l\/fr_FR\/ctkPPSoFWWG.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Hnz7V":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iF_Y4\/y3\/l\/fr_FR\/AOqMnCAnD6Z.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"0Qz\/x":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yt\/r\/XFnQJ3_t5qO.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"V4XYk":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yv\/l\/0,cross\/jknluA7nAdt.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"pI7AA":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yl\/l\/0,cross\/7PwQfVtHQ_a.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"06cdq":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yp\/l\/0,cross\/bjmVecx-D1E.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"GTV\/f":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iiNY4\/yg\/l\/fr_FR\/K22ePnpfvUi.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"qr7Ui":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iSC14\/yR\/l\/fr_FR\/hyYi_oyVDfL.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"iPulg":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iUF44\/yL\/l\/fr_FR\/sRlRAZ1RrCB.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"RTCkM":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iZ984\/y0\/l\/fr_FR\/evSrFnud6SM.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Dqx7i":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y5\/l\/0,cross\/-zXqIzqmFug.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"L9N1c":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i4Da4\/yb\/l\/fr_FR\/OPYrkBDqQ_V.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"8P4PI":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y2\/l\/0,cross\/OCs65KvvpPb.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"QEiKI":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yk\/l\/0,cross\/5Dd9ocRrEXs.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"hRuHw":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iYmR4\/yp\/l\/fr_FR\/-AijStL8ZK2.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"aPhac":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yi\/r\/3MRpdXeTpYL.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"DHXyo":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yw\/r\/Hy5khJQUu1h.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"msROh":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iEth4\/yU\/l\/fr_FR\/7VTpo4e5fnN.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"8ZOng":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y-\/r\/_DJ8I5etIOC.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"+g5ut":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yT\/r\/iQ5U3rD8_CE.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"WGwrK":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yW\/r\/_hDHCUjt-Dy.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"i7Ezh":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yo\/r\/icBNOrz3r2W.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Dk3Ru":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yA\/r\/t5Adkvs3L6S.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"rSdpp":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yJ\/r\/OIpjSfXAdem.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"LCjoQ":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yz\/l\/0,cross\/XIQ1gnvQ-cB.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"ET2op":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iMAd4\/y1\/l\/fr_FR\/LoiJKKDuLKd.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"TeSw5":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ip5s4\/yh\/l\/fr_FR\/ykXis4_ZHWW.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Vgu\/8":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yi\/l\/0,cross\/rfZWRa3-u-s.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"IKC6k":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3is4_4\/yh\/l\/fr_FR\/XxYi6XxnQMV.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"BetMg":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yg\/r\/vZsyH8U6Mh_.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"SDzVZ":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yx\/r\/wJ7FaAWvRFy.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"hrp5s":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yI\/r\/PaijLmwvE4K.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"SvtpO":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yM\/r\/7Eq4PWzeHL2.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"4UwqC":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yM\/r\/Qa59xnVdTLl.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"EgfGh":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y_\/r\/GITPgzSJgeT.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"4ovfo":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3izLn4\/yJ\/l\/fr_FR\/TbG7XNo632I.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"YfbyM":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3il9T4\/yJ\/l\/fr_FR\/FZ2ZiDymXY0.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"aMxSg":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yM\/l\/0,cross\/LucsyP8y8Od.css?_nc_x=Ij3Wp8lg5Kz","nonblocking":1,"nc":1},"ym0w2":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yG\/r\/SsQrTCRMAxW.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"XyJfT":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iUw54\/yI\/l\/fr_FR\/aFWI6d2TVv1.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Yq8FY":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yh\/l\/0,cross\/rm3NwO7h3EM.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"rgw0Z":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yi\/l\/0,cross\/t1V-zslg1Md.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"bGxbi":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ib7y4\/yf\/l\/fr_FR\/n_8mOLU2mlP.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"lYBvK":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yx\/r\/ZJxIHs4CWVV.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"GeyME":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ym\/l\/0,cross\/x8qlNEx5yH2.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"syXcF":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yt\/r\/pFpHfzwi-CP.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"kN9l0":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yz\/r\/5yaz4llBL0U.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"t6GyV":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yt\/r\/XRRZwYoGTtf.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"h6Szp":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yj\/r\/zK0uAQzSpU7.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"N3rM5":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iosL4\/yM\/l\/fr_FR\/YMKy2j8w5oF.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Az3ld":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ys\/r\/vV23GWggbD4.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"gPhDT":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iyRL4\/yC\/l\/fr_FR\/h_-vvehcOSx.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"JJBMp":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iNGa4\/yy\/l\/fr_FR\/vAghDP2BkMJ.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"AQbZ7":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y9\/r\/kzaX_ghqjrp.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"WKDEm":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yx\/l\/0,cross\/1RhOXJ7ItTV.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"4vR9S":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iMWF4\/y6\/l\/fr_FR\/ycAat2kPJeM.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"s4wIF":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yZ\/r\/JpR_aMRoGA8.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"nHbqB":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yP\/r\/JMXQJFwQIGs.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"7Lihg":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yi\/r\/P0btCF9BNfx.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"+TpkD":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yW\/r\/f3gjglsi3eR.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"7lKC3":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yj\/r\/BP-3tZbmYcC.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"LuW3P":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yo\/r\/r9IuORBKw6O.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"BGHqH":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yA\/r\/nk48yHZnore.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"q2wgV":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iiWf4\/y7\/l\/fr_FR\/l0A8m_PwEoQ.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"cjC4v":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iOe_4\/yv\/l\/fr_FR\/lKn9ewLy8LK.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"1y5Je":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ic2U4\/y8\/l\/fr_FR\/wTya3JQm1sQ.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Smt4s":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ibli4\/y4\/l\/fr_FR\/_4QzIEy_SM-.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"stOXu":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iM134\/y5\/l\/fr_FR\/IWNfMAzbtVw.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"8ay4F":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yS\/r\/JDgRcU4FYC_.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Wz+3L":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ib6I4\/yd\/l\/fr_FR\/SidG7lijjAv.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"PAPKn":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ym\/l\/0,cross\/1oeclF494rh.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"UDUHA":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iuSJ4\/yV\/l\/fr_FR\/dVlWB8J7NS9.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"jtkkW":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yQ\/l\/0,cross\/e6FxS8C5IhT.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"SGr0U":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ilpT4\/yn\/l\/fr_FR\/_Zrrd11NpTc.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"vodRa":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y9\/l\/0,cross\/Gj3lPhgMYBt.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"YmtTG":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i-yi4\/yy\/l\/fr_FR\/65ZD1rysXU2.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"kEv1C":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iN_v4\/yM\/l\/fr_FR\/BFtL6n5-Xd3.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"sQuNJ":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yL\/r\/ClKCByTDliR.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"bW5m3":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iklG4\/yu\/l\/fr_FR\/-DGtWLg0suV.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"JQyio":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yw\/r\/QMVdT1dKL06.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"L6stH":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yK\/r\/vzp5DZiV887.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"g6V8H":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y4\/l\/0,cross\/Px4C5FOotrH.css?_nc_x=Ij3Wp8lg5Kz","nonblocking":1,"nc":1},"imiIB":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yy\/l\/0,cross\/jOrnHfH5WxZ.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"VUsNX":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ievP4\/yN\/l\/fr_FR\/zuTIclRim8w.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"7gPrl":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yM\/l\/0,cross\/HTzw68OL4E4.css?_nc_x=Ij3Wp8lg5Kz","nonblocking":1,"nc":1},"aEggD":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yM\/l\/0,cross\/IIiK2HcwBYS.css?_nc_x=Ij3Wp8lg5Kz","nonblocking":1,"nc":1},"EYAt\/":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y4\/r\/PcRkoQId8wy.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"qtvn6":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yC\/r\/hLCEG7K22tj.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"3UzVH":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iVW-4\/yO\/l\/fr_FR\/XXl11Cbpvrb.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"lcNAp":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yQ\/l\/0,cross\/Cm8p3DRVLpG.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"ojoq7":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yy\/l\/0,cross\/YKmjRXPmWKD.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"QMKQw":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yQ\/l\/0,cross\/LX0GcuEtK54.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"2EyDR":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iGeO4\/y2\/l\/fr_FR\/yK1rWhi3nGR.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"x4+NR":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i-wT4\/yo\/l\/fr_FR\/KTxmlq-ky-f.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"iU9Tk":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y6\/l\/0,cross\/z6cs_E-eK4A.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"fnCFa":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iAvO4\/yp\/l\/fr_FR\/UgZLVEhHSfs.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"IDH9a":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i7-c4\/yJ\/l\/fr_FR\/WfLb7as81x1.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"KX7mp":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3idT-4\/yp\/l\/fr_FR\/5RPs59Fez1I.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"AMi6p":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yO\/l\/0,cross\/8zg3qkrMECo.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"7F23t":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yL\/r\/qTfKVdnNl-D.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"I9TBb":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3igMx4\/yN\/l\/fr_FR\/KAacB1-38FZ.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"K3dJE":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yE\/r\/CeWdDko-cfI.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"n6+WY":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yV\/r\/fW9YljDITP-.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"bpKTk":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iG-O4\/yE\/l\/fr_FR\/C75Dmh3j2wR.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"j6Hfz":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y8\/r\/SkLO6pTALmB.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"7VLCL":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iKxf4\/yO\/l\/fr_FR\/vulghqmuLnm.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"KD9\/X":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iE7K4\/yd\/l\/fr_FR\/ulZPctmjcJ8.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"qYpWr":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yH\/r\/XOTN2EF_wTO.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"a1kze":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yM\/r\/ptfyj_jBGwh.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"bxhCT":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yp\/r\/fjh3mRpkzK1.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"UTPxx":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y-\/r\/EaR4FqNlXYK.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"4fxwX":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yt\/l\/0,cross\/YwuwLs5KRlu.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"7T+VW":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iIsP4\/yY\/l\/fr_FR\/SD97Nnop3fL.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"lS7aW":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yp\/l\/0,cross\/hp5zbfy634G.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"oHDrD":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y3\/r\/r6gEJqYcK0H.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"6txuB":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iGo24\/yQ\/l\/fr_FR\/HQ_yWXAJWtl.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"lfi52":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iYaR4\/y0\/l\/fr_FR\/LCiJ1jOWZGK.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"7uSow":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ya\/r\/50830axmuw9.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"wnfXP":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iOUH4\/yY\/l\/fr_FR\/-3pMA6B4Kci.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"AbpTy":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ifWq4\/yN\/l\/fr_FR\/NMQDEpl8gfF.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"042Z4":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yN\/l\/0,cross\/MgI4bHZiawo.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"xVMOY":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yc\/r\/CuKv0Qydcma.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"tVQN2":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i13N4\/y4\/l\/fr_FR\/xS4jtWE39rv.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"sZZQ+":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y9\/l\/0,cross\/kxU_TnRKwT3.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"q6Dyc":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yy\/r\/wUSbmMkUuEp.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"uCnXk":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yq\/r\/WMTedKgYDth.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"51wD9":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yK\/r\/yME1-8XNOe1.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"I2iPx":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iVE74\/y1\/l\/fr_FR\/YkMoNvOl5vx.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"njqlm":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ys\/r\/MwE8WO0rMwP.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"ZGrPB":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i4h04\/y1\/l\/fr_FR\/vxmTlsHAj4N.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"SqrUc":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i_Y24\/yi\/l\/fr_FR\/Xb9B31Jq0Wv.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"INvOs":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yj\/l\/0,cross\/V58RzrB4lUu.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"LZO4S":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iTEn4\/y3\/l\/fr_FR\/SaJcnRHxJcq.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"reWFz":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y3\/l\/0,cross\/byQmV5uxlmv.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"M5qW9":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yA\/l\/0,cross\/8kRHLOWZ8mj.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"oM+kH":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yH\/r\/Sp2zOooLCSk.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"GNNkd":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yq\/r\/9jMxtagMzyq.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"X2mXp":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iUZR4\/y4\/l\/fr_FR\/FJt5zHWRE66.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"7P7cP":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iwu84\/yG\/l\/fr_FR\/O1g15zKzZ-Y.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"BI\/I3":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yg\/l\/0,cross\/Ijn7dmbgY7O.css?_nc_x=Ij3Wp8lg5Kz","nc":1},"SOPeK":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yD\/r\/-ERXufSMve4.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"OSXsJ":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yp\/r\/7OWlgB6cg_Q.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"0T5sS":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3inpo4\/yd\/l\/fr_FR\/fQAQ8f76_IZ.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"NO\/gZ":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iuzl4\/y5\/l\/fr_FR\/xUz51zCGOFb.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"FEt5G":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y7\/r\/svFKQXueTby.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"YUh4u":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yy\/r\/v52dOs7kLjd.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"Rodrh":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yA\/r\/usu4IeUwovm.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"dWm5x":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ijhm4\/yZ\/l\/fr_FR\/8nfi1nkh0kk.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"bHUSB":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y2\/r\/BpYgwilsrTV.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"qpkv3":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y7\/r\/Gp9ko2XSwBz.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"1h9Z5":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iYPp4\/yy\/l\/fr_FR\/X6hf7CjPmmM.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"qfxLC":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iGGF4\/y8\/l\/fr_FR\/RnAQQUjSSHt.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"YRJGw":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iEuC4\/ys\/l\/fr_FR\/83kl_a08Gow.js?_nc_x=Ij3Wp8lg5Kz","nc":1},"00rBN":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iLrb4\/yy\/l\/fr_FR\/1S315s4fATP.js?_nc_x=Ij3Wp8lg5Kz","nc":1}}, []);Bootloader.enableBootload({"BanzaiODS":{"r":["rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]}},"BanzaiScuba":{"r":["xV8PQ","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"]}},"VisualCompletionGating":{"r":["SEhma"]},"Dialog":{"r":["no9Df","AM+bO","RYSN8","SEhma","ihKKS","T5BQ8","rm2ch","51yTN","xV8PQ"],"rds":{"m":["BanzaiODS","BanzaiScuba","VisualCompletionGating"]},"be":1},"ExceptionDialog":{"r":["tSrJ6","no9Df","JTZ86","RYSN8","4UeD4","Z88p8","0Wg8h","ihKKS","nw7D1","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"PageTransitions":{"r":["SEhma","51yTN","ihKKS","xV8PQ","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba","VisualCompletionGating"]},"be":1},"QuickSandSolver":{"r":["0lLrn","8ELCB","ihKKS","+ClWy","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"ConfirmationDialog":{"r":["oE4Do","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"ChatImpressionLogger":{"r":["fPThm","0Wg8h","k27RP","ihKKS","nw7D1","xV8PQ","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"Tooltip.react":{"r":["rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"FantaReducersGetMessages":{"r":["40+zj","QBYSY","tz4gj","no9Df","Dj4L0","DhoKa","JTZ86","7i5zN","lUGK9","4UeD4","0Wg8h","nOigL","SIxWW","tQxdF","ihKKS","Zog71","kBSCG","FwtnY","qLeWq","nw7D1","xV8PQ","rm2ch","To+dX"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["r0iEM","5HMsi","q8aAI"]},"be":1},"getPageIDFromThreadID":{"r":["nOigL","nw7D1","xV8PQ"],"be":1},"PageUsernameEditDialog.react":{"r":["no9Df","AM+bO","DhoKa","JTZ86","RYSN8","4UeD4","Z88p8","SEhma","0Wg8h","SMErT","pEk\/g","J09Lk","ihKKS","5IEYP","faR6u","FwtnY","Jr3Bg","nw7D1","xV8PQ","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"ReactDOM":{"r":["rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"EncryptedImg":{"r":["Z88p8","rm2ch"],"be":1},"MercuryIDs":{"r":["nw7D1"],"be":1},"PagesLogger":{"r":["gTT3H","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"PagesLoggerEventEnum":{"r":["gTT3H"],"be":1},"PagesLoggerEventTargetEnum":{"r":["gTT3H"],"be":1},"CSSFade":{"r":["no9Df","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"KeyEventTypedLogger":{"r":["lBcqb","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"SkywalkerManager":{"r":["rm2ch"],"rds":{"m":["BanzaiODS","BladeRunnerClient","SkywalkerUtils","BanzaiScuba","MqttLongPollingRunner"],"r":["r0iEM","5HMsi","q8aAI","xV8PQ"]},"be":1},"BlueCompatRouter":{"r":[],"be":1},"Animation":{"r":["RYSN8","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"ContextualLayerInlineTabOrder":{"r":["no9Df","SEhma","jEALs","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"PageUnpublishPageLikeWarningDialog.react":{"r":["no9Df","JTZ86","4UeD4","SK4Vk","ihKKS","1KdY2","jjYkh","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"ChatOpenTabEventLogger":{"r":["Z88p8","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"FantaTabActions":{"r":["Dj4L0","qLeWq","nw7D1","xV8PQ","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"TahoeController":{"r":["11wT6","40+zj","pQqPt","w8GPS","no9Df","AM+bO","Dj4L0","jQ2oA","DhoKa","JTZ86","fPThm","RYSN8","4UeD4","Z88p8","SEhma","0Wg8h","SMErT","IzDvI","bPItP","yEyx9","e8WHZ","ISTT9","oAks5","6qS6E","GUwm5","tQxdF","ihKKS","\/5DSF","s7qTM","ZwouJ","N1qgl","5IEYP","PyR5u","FwtnY","E1i6a","qLeWq","1KdY2","nw7D1","xV8PQ","wqYWn","rm2ch","To+dX","51yTN","ntaFj"],"rds":{"m":["Banzai","BanzaiODS","BanzaiScuba","WebDevicePerfInfoLogging","VisualCompletionGating"]},"be":1},"MqttSkywalkerManager":{"r":["5HMsi","\/Nybe","rm2ch","q8aAI","30wmF"],"rds":{"m":["BanzaiODS","BanzaiScuba","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM"]},"be":1},"OneVcFBRTCCore":{"r":["eU5GU","Ar48s","DhoKa","cPQrt","Hfe+3","x9Rja","SIxWW","ihKKS","Lhx91","w9tbR","PwBfj","27CmT","ouAaD","lwGlf","Hwxrn","nw7D1","trA+M","xV8PQ","rm2ch","To+dX","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"SimpleXUIDialog":{"r":["no9Df","JTZ86","RYSN8","4UeD4","ihKKS","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"ChatEmojiFlyout.react":{"r":["40+zj","n3CYQ","RhuQ9","tz4gj","no9Df","Dj4L0","DhoKa","JTZ86","lUGK9","4UeD4","Z88p8","0Wg8h","nOigL","y\/7gK","GUwm5","tQxdF","ihKKS","jY1Qu","Zog71","kBSCG","Xc0AY","FwtnY","I4qBG","9fJ33","qLeWq","nw7D1","xV8PQ","rm2ch","To+dX"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"ChatSidebarVisibility":{"r":["ihKKS","nw7D1","xV8PQ","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"VideoPlayerMetaData":{"r":["ngE4J","ihKKS","rm2ch","Jh1qa","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"MessengerComposerFlyoutButton.react":{"r":["40+zj","UxwTG","no9Df","DhoKa","JTZ86","4UeD4","0Wg8h","Kz6X0","2dc0z","ihKKS","Zog71","FwtnY","9fJ33","nw7D1","xV8PQ","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"ChatContentSearchFlyoutWrapper.react":{"r":["40+zj","UwLvl","no9Df","AM+bO","DhoKa","NGAcI","4UeD4","Z88p8","pPPG+","0Wg8h","XDoA0","v6cfL","s5BQL","e8WHZ","yYlKk","ihKKS","5IEYP","FwtnY","tUYls","qLeWq","MVwE9","nw7D1","rm2ch","0+vnD"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"FBStoriesMutedBucketOwnersViewer":{"r":["G2jm+","UxwTG","QGk8\/","no9Df","AM+bO","DhoKa","JTZ86","P5MDl","yyld4","fPThm","dUQGr","4UeD4","Z88p8","SEhma","+zRTC","ngE4J","5HMsi","ihKKS","sK9jR","5IEYP","1+i5d","qLeWq","uhlnB","po2\/O","nw7D1","xV8PQ","Nj7kK","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["r0iEM","q8aAI"]},"be":1},"RTWebUserActionLogger":{"r":["DhoKa","SIxWW","trA+M","rm2ch","0+vnD"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"QPLInspector":{"r":["VvVFw"],"be":1},"StoriesSuspenseEndCard.react":{"r":["40+zj","pQqPt","rN+DP","5\/qRq","no9Df","zLpUS","Dj4L0","DhoKa","BZIND","SEhma","NDtre","FbEk3","eYnZe","64aRI","keBrz","ilIyQ","9LpRR","FF1Rj","0hash","6Fkk7","HiP2n","ihKKS","s7qTM","sK9jR","N1qgl","PyR5u","NrZ0u","xV8PQ","upWiN","wqYWn","rm2ch","pcPAJ","ntaFj"],"rds":{"m":["Banzai","BanzaiODS","WebDevicePerfInfoLogging","StoryProfileImpressionFalcoEvent","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["0Wg8h","QJpJT","r0iEM","5HMsi","q8aAI"]},"be":1},"MessengerMQTTPresenceReporting":{"r":["b9A3+","5HMsi","2YdyO","rm2ch","q8aAI"],"rds":{"m":["BanzaiODS","BanzaiScuba","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM"]},"be":1},"StoriesWebSettingsDialog.react":{"r":["40+zj","pQqPt","UxwTG","5\/qRq","no9Df","Dj4L0","TRLBY","DhoKa","SEhma","0Wg8h","FbEk3","eYnZe","ilIyQ","YfV8d","8\/6en","0hash","R3xsy","ihKKS","6kgLx","s7qTM","N1qgl","PyR5u","FwtnY","aNAVU","xV8PQ","upWiN","Nj7kK","wqYWn","rm2ch","v2nGa","ntaFj"],"rds":{"m":["Banzai","BanzaiODS","WebDevicePerfInfoLogging","CometTabMenu.react","BanzaiScuba"],"r":["uDRSi","2Sgzd","DyLM9"]},"be":1},"StoriesSuspenseContentPaneRootWithEntryPointQuery.graphql":{"r":["qumKy"],"be":1},"Dock":{"r":["no9Df","0Wg8h","xV8PQ","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"TimeSliceInteractionsLiteTypedLogger":{"r":["mO9SG","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"WebSpeedInteractionsTypedLogger":{"r":["OEc2m","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"AsyncRequest":{"r":["ihKKS","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"DOM":{"r":["rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"Form":{"r":["rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"FormSubmit":{"r":["jEALs","ihKKS","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"Input":{"r":["rm2ch"],"be":1},"Live":{"r":["0Wg8h","2\/maQ","nw7D1","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"Toggler":{"r":["no9Df","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"Tooltip":{"r":["no9Df","DhoKa","JTZ86","4UeD4","ihKKS","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"URI":{"r":[],"be":1},"trackReferrer":{"r":[],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["rm2ch","xV8PQ"]},"be":1},"PhotoTagApproval":{"r":["5vrXt","\/mnVq","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"PhotoSnowlift":{"r":["40+zj","isakB","no9Df","AM+bO","51yTN","DhoKa","JTZ86","R4K0F","RYSN8","4UeD4","Z88p8","SEhma","0Wg8h","5vrXt","bPItP","ISTT9","kT\/vD","GUwm5","syI6x","tQxdF","ihKKS","\/5DSF","D663E","I4qBG","qLeWq","T5BQ8","i1BLU","nw7D1","xV8PQ","8JsHK","rm2ch","ajmNg","To+dX","Jh1qa"],"rds":{"m":["BanzaiODS","BanzaiScuba","VisualCompletionGating"]},"be":1},"PhotoTagger":{"r":["40+zj","isakB","tSrJ6","CPmkK","9ac\/e","liORJ","tz4gj","no9Df","AM+bO","Dj4L0","DhoKa","JTZ86","gcDYl","RYSN8","4UeD4","SEhma","UYizf","gTT3H","0Wg8h","SMErT","tBF0I","ua3bD","5vrXt","2U9PY","zTgMw","ISTT9","Tkr6T","GUwm5","c6zYF","tQxdF","PYgcm","ihKKS","6kgLx","\/5DSF","N1qgl","5IEYP","FwtnY","vePHR","QWswh","aF9iP","qLeWq","MVwE9","gVdqy","T5BQ8","nw7D1","xV8PQ","rm2ch","ajmNg","To+dX","bspa7","iwx3a","51yTN","1XgS\/","kT\/vD","dFY2N","khB+Z"],"rdfds":{"m":["GamesVideoDeleteCommentDialog.react","GamesVideoModerationRulesNux.react","GamesVideoCommentRemovedDialog.react"],"r":["pQqPt","eJrfj","UxwTG","Z88p8","FbEk3","eYnZe","6qS6E","5HMsi","s7qTM","wqYWn","WhvCI","HO1KZ","9MqX9","ntaFj"]},"rds":{"m":["PresenceStatus","BanzaiODS","BanzaiScuba","VisualCompletionGating","Banzai","WebDevicePerfInfoLogging"]},"be":1},"PhotoTags":{"r":["5vrXt","\/mnVq","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"TagTokenizer":{"r":["no9Df","AM+bO","y\/\/8P","0Wg8h","ihKKS","FwtnY","\/mnVq","NyxKb","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"AsyncDialog":{"r":["no9Df","JTZ86","4UeD4","ihKKS","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"Hovercard":{"r":["isakB","no9Df","DhoKa","JTZ86","4UeD4","0Wg8h","ihKKS","N1qgl","FwtnY","aF9iP","rm2ch","iwx3a"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"Banzai":{"r":["rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"ResourceTimingBootloaderHelper":{"r":["NYwGO","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"TimeSliceHelper":{"r":["7S171"],"be":1},"XSalesPromoWWWDetailsDialogAsyncController":{"r":["145Eo","rm2ch"],"be":1},"BanzaiStream":{"r":["ZU1ro","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"SnappyCompressUtil":{"r":["rm2ch"],"be":1},"GeneratedArtilleryUserTimingSink":{"r":["Hx+az","uYbVb","sGe+Z","9Zaf3"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["rm2ch","xV8PQ"]},"be":1},"XOfferController":{"r":["hIek+","rm2ch"],"be":1},"PerfXSharedFields":{"r":["0Wg8h"],"be":1},"Event":{"r":["no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["rm2ch","xV8PQ"]},"be":1},"MentionsInputTypeaheadView.react":{"r":["tSrJ6","no9Df","JTZ86","4UeD4","Z88p8","0Wg8h","SMErT","e8WHZ","1+ies","ihKKS","5IEYP","prsk2","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"BladeRunnerClient":{"r":["r0iEM","5HMsi","rm2ch","q8aAI"],"rds":{"m":["BanzaiODS","BanzaiScuba","MqttLongPollingRunner"],"r":["xV8PQ"]}},"SkywalkerUtils":{"r":["rm2ch","q8aAI"]},"KeyframesRenderer":{"r":["fpTka","SEhma","5HMsi","rm2ch"]},"KeyframesEnvironment":{"r":["5HMsi","rm2ch"]},"FBKeyframesLoggedSession":{"r":["fpTka","DhoKa","SEhma","KQ+lo","I4qBG","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]}},"KeyframesPluginRandomSubdocument":{"r":["2gNYY","SEhma","rm2ch"],"be":1},"KeyframesPluginRandomSubdocumentSchema":{"r":["2gNYY"],"be":1},"KeyframesPluginSoundSchema":{"r":["M+waY","fpTka"],"be":1},"KeyframesPluginSound":{"r":["fpTka","2gNYY","0Wg8h","5HMsi","WMm0L"],"be":1},"KeyframesPluginTrimPathSchema":{"r":["fpTka","0cIw6"],"be":1},"KeyframesPluginTrimPath":{"r":["fpTka","0cIw6","2gNYY","5HMsi","rm2ch"],"be":1},"KeyframesPluginLayerNameSchema":{"r":["E9ERs"],"be":1},"KeyframesPluginLayerName":{"r":["2gNYY","l4Pzl"],"be":1},"KeyframesPluginDynamicProperties":{"r":["3UpiF","2gNYY"],"be":1},"KeyframesPluginDynamicPropertiesSchema":{"r":["88Pbc"],"be":1},"KeyframesPluginLayerTags":{"r":["2gNYY","eoynD"],"be":1},"KeyframesPluginLayerTagsSchema":{"r":["CZBm4"],"be":1},"KeyframesPluginSubdocumentSwap":{"r":["2gNYY","r4Fh3"],"be":1},"KeyframesPluginSubdocumentSwapSchema":{"r":["cumX1"],"be":1},"KeyframesAssetDecoder":{"r":["fpTka","0Wg8h","KQ+lo","xV8PQ","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"]}},"StoriesViewerRoot.react":{"r":["40+zj","pQqPt","isakB","5\/qRq","no9Df","Dj4L0","DhoKa","JTZ86","RYSN8","4UeD4","SEhma","0Wg8h","FbEk3","eYnZe","thnei","ilIyQ","5HMsi","P7N\/4","0hash","ihKKS","Zog71","s7qTM","sK9jR","N1qgl","FwtnY","J3FJG","nw7D1","xV8PQ","upWiN","wqYWn","rm2ch","bmJyN","4UFZm","ntaFj","qumKy","ngE4J","51yTN","v2nGa","wX6vm","04xdB","AM+bO","SMErT","vqW6w","VUABt","c6zYF","Jh1qa"],"rds":{"m":["Banzai","BanzaiODS","BanzaiScuba","KeyframesRenderer","KeyframesEnvironment","FBKeyframesLoggedSession","KeyframesAssetDecoder","BladeRunnerClient","StoriesCardOptionMenu.react","SkywalkerUtils","CometToast.react","WebDevicePerfInfoLogging","CometConfirmationDialogImpl.react","CometToasterView_DO_NOT_USE.react","StoriesViewerRoot.react","StoriesSuspenseCardOptionMenu.react","StoriesViewerSuspenseRoot.react","StoriesViewerSingleBucketRoot.react","StoriesArchiveRoot.react","VisualCompletionGating","MqttLongPollingRunner"],"r":["fpTka","KQ+lo","I4qBG","r0iEM","q8aAI","fh4tn","9MqX9"]}},"CometToast.react":{"r":["pQqPt","no9Df","eYnZe","ihKKS","s7qTM","N1qgl","wqYWn","rm2ch"],"rds":{"m":["Banzai","BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]}},"WebDevicePerfInfoLogging":{"r":["0Wg8h","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]}},"StoriesSuspenseCardOptionMenu.react":{"r":["40+zj","pQqPt","fh4tn","5\/qRq","no9Df","eYnZe","ilIyQ","0hash","ihKKS","Zog71","9MqX9","s7qTM","sK9jR","N1qgl","FwtnY","wqYWn","rm2ch","ntaFj","Dj4L0","JTZ86","4UeD4","4UFZm"],"rds":{"m":["Banzai","BanzaiODS","WebDevicePerfInfoLogging","CometConfirmationDialogImpl.react","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["0Wg8h","xV8PQ","r0iEM","5HMsi","q8aAI"]}},"CometFRX_DEPRECATED.react":{"r":["40+zj","pQqPt","no9Df","1nOAl","WBj+Z","0hash","ihKKS","JwwzR","s7qTM","N1qgl","dB7RV","wqYWn","rm2ch","ntaFj"],"rds":{"m":["Banzai","BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"CometConfirmationDialogImpl.react":{"r":["pQqPt","fh4tn","no9Df","eYnZe","ihKKS","9MqX9","s7qTM","N1qgl","wqYWn","rm2ch","ntaFj"],"rds":{"m":["Banzai","BanzaiODS","WebDevicePerfInfoLogging","BanzaiScuba"],"r":["0Wg8h","xV8PQ"]}},"StoriesViewerSuspenseRoot.react":{"r":["40+zj","pQqPt","isakB","fh4tn","5\/qRq","no9Df","Dj4L0","DhoKa","JTZ86","RYSN8","4UeD4","SEhma","0Wg8h","FbEk3","ilIyQ","5HMsi","0hash","ihKKS","Zog71","9MqX9","s7qTM","sK9jR","N1qgl","FwtnY","J3FJG","nw7D1","xV8PQ","upWiN","wqYWn","rm2ch","4UFZm","ntaFj","qumKy","ngE4J","v2nGa","wX6vm","04xdB","51yTN","AM+bO","SMErT","vqW6w","VUABt","c6zYF","Jh1qa"],"rds":{"m":["Banzai","BanzaiODS","BanzaiScuba","KeyframesRenderer","KeyframesEnvironment","FBKeyframesLoggedSession","KeyframesAssetDecoder","BladeRunnerClient","SkywalkerUtils","CometToast.react","WebDevicePerfInfoLogging","StoriesSuspenseCardOptionMenu.react","CometConfirmationDialogImpl.react","CometToasterView_DO_NOT_USE.react","StoriesViewerRoot.react","StoriesViewerSuspenseRoot.react","StoriesViewerSingleBucketRoot.react","StoriesArchiveRoot.react","MqttLongPollingRunner","VisualCompletionGating","StoriesCardOptionMenu.react"],"r":["fpTka","KQ+lo","I4qBG","r0iEM","q8aAI","eYnZe","thnei","P7N\/4","bmJyN"]}},"StoriesViewerSingleBucketRoot.react":{"r":["40+zj","pQqPt","isakB","fh4tn","5\/qRq","no9Df","Dj4L0","DhoKa","JTZ86","RYSN8","4UeD4","SEhma","0Wg8h","FbEk3","ilIyQ","5HMsi","0hash","ihKKS","Zog71","s7qTM","sK9jR","N1qgl","FwtnY","J3FJG","nw7D1","xV8PQ","upWiN","wqYWn","rm2ch","4UFZm","ntaFj","qumKy","ngE4J","v2nGa","wX6vm","04xdB","51yTN","AM+bO","SMErT","vqW6w","VUABt","c6zYF","Jh1qa"],"rds":{"m":["Banzai","BanzaiODS","BanzaiScuba","KeyframesRenderer","KeyframesEnvironment","FBKeyframesLoggedSession","KeyframesAssetDecoder","BladeRunnerClient","SkywalkerUtils","CometToast.react","WebDevicePerfInfoLogging","StoriesSuspenseCardOptionMenu.react","CometConfirmationDialogImpl.react","CometToasterView_DO_NOT_USE.react","StoriesViewerRoot.react","StoriesViewerSuspenseRoot.react","StoriesViewerSingleBucketRoot.react","StoriesArchiveRoot.react","MqttLongPollingRunner","VisualCompletionGating","StoriesCardOptionMenu.react"],"r":["fpTka","KQ+lo","I4qBG","r0iEM","q8aAI","eYnZe","9MqX9","thnei","P7N\/4","bmJyN"]}},"StoriesArchiveRoot.react":{"r":["40+zj","pQqPt","fh4tn","5\/qRq","no9Df","Dj4L0","DhoKa","JTZ86","RYSN8","4UeD4","SEhma","0Wg8h","FbEk3","ilIyQ","5HMsi","P7N\/4","0hash","ihKKS","Zog71","s7qTM","sK9jR","N1qgl","FwtnY","J3FJG","nw7D1","xV8PQ","upWiN","wqYWn","rm2ch","4UFZm","ntaFj","isakB","qumKy","ngE4J","v2nGa","wX6vm","04xdB","9MqX9","51yTN","AM+bO","SMErT","vqW6w","VUABt","c6zYF","Jh1qa"],"rds":{"m":["Banzai","BanzaiODS","BanzaiScuba","KeyframesRenderer","FBKeyframesLoggedSession","KeyframesAssetDecoder","BladeRunnerClient","SkywalkerUtils","CometToast.react","WebDevicePerfInfoLogging","StoriesSuspenseCardOptionMenu.react","CometToasterView_DO_NOT_USE.react","KeyframesEnvironment","StoriesViewerRoot.react","CometConfirmationDialogImpl.react","StoriesViewerSuspenseRoot.react","StoriesViewerSingleBucketRoot.react","StoriesArchiveRoot.react","MqttLongPollingRunner","VisualCompletionGating","StoriesCardOptionMenu.react"],"r":["fpTka","KQ+lo","I4qBG","r0iEM","q8aAI","eYnZe","thnei","bmJyN"]}},"CometToasterView_DO_NOT_USE.react":{"r":["pQqPt","SEhma","eYnZe","ihKKS","s7qTM","N1qgl","wqYWn","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]}},"MqttLongPollingRunner":{"r":["r0iEM","5HMsi","rm2ch","q8aAI"]},"PresenceStatus":{"r":["ihKKS","nw7D1","xV8PQ","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"]}},"UFIVideoPlayerRegistry":{"r":["rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]}},"UFICreatorInfo.react":{"r":["no9Df","0Wg8h","5HMsi","ihKKS","I4qBG","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]}},"UFI2FeedbackReactMutation":{"r":["pL+2L","ihKKS","rm2ch","q8aAI"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi"]}},"LivingRoomCreationSource":{"r":["KVdsT"],"be":1},"CreateLivingRoomActionLinkStore":{"r":["xZkBE","G7B0B","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFI2TypingIndicator.react":{"r":["r0iEM","JTZ86","RYSN8","pL+2L","ihKKS","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","UFI2TypingSubscription","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","5HMsi","q8aAI"]}},"UFI2CreateCommentSubscription":{"r":["r0iEM","fpTka","ihKKS","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","5HMsi","q8aAI"]}},"UFI2ActorPresenceProvider.react":{"r":["pL+2L","ihKKS","nw7D1","xV8PQ","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"]}},"UFI2UnhideCommentMutation":{"r":["pL+2L","ihKKS","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]}},"UFI2ReactionsMenu":{"r":["5HMsi","no9Df","DhoKa","JTZ86","0Wg8h","ihKKS","rm2ch"],"rds":{"m":["BanzaiODS","KeyframesRenderer","KeyframesEnvironment","FBKeyframesLoggedSession","KeyframesAssetDecoder","BanzaiScuba"],"r":["fpTka","SEhma","KQ+lo","I4qBG","xV8PQ"]}},"UFI2BanActorMutation":{"r":["pL+2L","ihKKS","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]}},"UFI2ViewOptionsSelectorImpl.react":{"r":["40+zj","fpTka","no9Df","JTZ86","RYSN8","4UeD4","SEhma","0Wg8h","SMErT","nw7D1","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]}},"StoriesCardOptionMenu.react":{"r":["40+zj","pQqPt","fh4tn","5\/qRq","no9Df","eYnZe","ilIyQ","0hash","ihKKS","Zog71","9MqX9","s7qTM","sK9jR","N1qgl","FwtnY","wqYWn","rm2ch","ntaFj","Dj4L0","JTZ86","4UeD4","4UFZm"],"rds":{"m":["Banzai","BanzaiODS","WebDevicePerfInfoLogging","CometConfirmationDialogImpl.react","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["0Wg8h","xV8PQ","r0iEM","5HMsi","q8aAI"]}},"UFI2TypingSubscription":{"r":["pL+2L","ihKKS","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]}},"GamesVideoDeleteCommentDialog.react":{"r":["40+zj","pQqPt","eJrfj","UxwTG","1XgS\/","dFY2N","Dj4L0","DhoKa","4UeD4","Z88p8","0Wg8h","FbEk3","eYnZe","6qS6E","5HMsi","ihKKS","s7qTM","N1qgl","5IEYP","qLeWq","xV8PQ","wqYWn","rm2ch","WhvCI","no9Df","ntaFj"],"rds":{"m":["Banzai","BanzaiODS","WebDevicePerfInfoLogging","BanzaiScuba"]}},"ScrollableArea":{"r":["no9Df","SEhma","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"GamesVideoModerationRulesNux.react":{"r":["40+zj","pQqPt","eJrfj","UxwTG","1XgS\/","dFY2N","no9Df","Dj4L0","DhoKa","HO1KZ","4UeD4","0Wg8h","FbEk3","6qS6E","5HMsi","ihKKS","s7qTM","N1qgl","xV8PQ","wqYWn","rm2ch","ntaFj"],"rds":{"m":["Banzai","BanzaiODS","WebDevicePerfInfoLogging","BanzaiScuba"]}},"GamesVideoCommentRemovedDialog.react":{"r":["40+zj","pQqPt","eJrfj","UxwTG","1XgS\/","dFY2N","no9Df","Dj4L0","DhoKa","HO1KZ","4UeD4","Z88p8","0Wg8h","FbEk3","eYnZe","6qS6E","5HMsi","ihKKS","9MqX9","s7qTM","N1qgl","5IEYP","qLeWq","xV8PQ","wqYWn","rm2ch","ntaFj"],"rds":{"m":["Banzai","BanzaiODS","BanzaiScuba","WebDevicePerfInfoLogging"]}},"TahoeVideoView":{"r":["11wT6","40+zj","pQqPt","w8GPS","no9Df","AM+bO","jQ2oA","DhoKa","JTZ86","fPThm","RYSN8","4UeD4","Z88p8","SEhma","0Wg8h","SMErT","IzDvI","bPItP","yEyx9","e8WHZ","ISTT9","oAks5","6qS6E","GUwm5","tQxdF","ihKKS","\/5DSF","s7qTM","ZwouJ","N1qgl","5IEYP","PyR5u","FwtnY","E1i6a","qLeWq","1KdY2","nw7D1","xV8PQ","wqYWn","rm2ch","To+dX","ntaFj"],"rds":{"m":["Banzai","BanzaiODS","BanzaiScuba","WebDevicePerfInfoLogging"]},"be":1},"PagesPublishingFunnelLoggingAdditionalPostTypes":{"r":["L\/iQe"],"be":1},"XUIErrorDialogImpl":{"r":["ruhOs","no9Df","DhoKa","JTZ86","4UeD4","0Wg8h","ihKKS","FwtnY","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"PagesPublishingLoggingActions":{"r":["DhoKa","Nz0l9","5\/u6t","nw7D1","xV8PQ","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"UFIReactionsTooltipImpl.react":{"r":["dPkof","no9Df","DhoKa","JTZ86","4UeD4","gTT3H","ihKKS","rm2ch","MRigG"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"VideoAutoplayControllerX":{"r":["RYSN8","SEhma","6qS6E","ihKKS","nw7D1","xV8PQ","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"VideoComponentOptionMenuItems":{"r":["NM4pb","no9Df","SEhma","nw7D1","rm2ch","ohdL0"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"LiveHeatmap.react":{"r":["WIxL5","AM+bO","+GaxX","2PvFj","FwtnY","VFaYD","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"SphericalVideoPlayer":{"r":["Dj4L0","DhoKa","JTZ86","SMErT","xGEBJ","vqW6w","HVwj\/","VUABt","oAks5","GUwm5","oAS9G","jxmGi","nw7D1","xV8PQ","rm2ch","Jh1qa","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"SphericalVideoRecenterControl":{"r":["xGEBJ","jxmGi","rm2ch"],"be":1},"VideoSphericalHeadingIndicator":{"r":["isakB","QGk8\/","no9Df","DhoKa","JTZ86","4UeD4","SEhma","SMErT","xGEBJ","bPItP","HVwj\/","oAks5","GUwm5","ihKKS","FwtnY","jxmGi","nw7D1","xV8PQ","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"VideoSphericalOverlay":{"r":["isakB","Dj4L0","P0wre","ihKKS","rm2ch","Jh1qa","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"ComposerXVideoUploadDialog.react":{"r":["QGkap","uPN\/2","40+zj","C5ICj","isakB","tSrJ6","woilf","0ZvA\/","9ac\/e","Mb1fd","989n2","IOyuU","QGk8\/","JGyAf","tz4gj","no9Df","AM+bO","C+SM\/","Dj4L0","0v71u","DhoKa","JTZ86","wX6vm","+QugF","FAq7+","RaonM","yyld4","fPThm","LDPcl","dUQGr","fB80B","RYSN8","lUGK9","4UeD4","Z88p8","SEhma","LaGCf","JoEMT","UYizf","gTT3H","pPPG+","0Wg8h","SMErT","bIfxC","W7U++","ua3bD","3TOkd","L4Ew5","xGEBJ","vqW6w","bPItP","ZhD31","2U9PY","ngE4J","HVwj\/","add90","e8WHZ","x9Rja","VUABt","k5FHv","oAks5","5ducr","nAKA5","8ELCB","TYMlP","6qS6E","GUwm5","M6CPB","5HMsi","c6zYF","qsYFI","1+ies","p8LuQ","BSrOo","UJYp8","ihKKS","0YIb\/","gRKg2","3gDmv","RHYGU","Zog71","wVhUn","5\/u6t","cPmCZ","XrsMr","Uainn","ZwouJ","oAS9G","5xMHb","n0fh6","5IEYP","JDg4l","FwtnY","E1i6a","p9Dq+","I4qBG","EAjeX","+CVWs","WfvyT","y9nqs","G6XJv","1AHFq","jfPF1","hlLKO","V74nh","ifqFW","qLeWq","uhlnB","H75eG","jxmGi","xKqRh","gVdqy","NyxKb","IUO2m","pbQ27","prsk2","T5BQ8","owmMR","i1BLU","nw7D1","T\/bbO","xV8PQ","upWiN","bkueN","rm2ch","ajmNg","q8aAI","To+dX","Jh1qa","Buh6M","51yTN","DfLs\/","4UFZm"],"rds":{"m":["BanzaiODS","BanzaiScuba","QuickPerformanceLogger","BladeRunnerClient","SkywalkerUtils","VisualCompletionGating","MqttLongPollingRunner"],"r":["r0iEM"]},"be":1},"BanzaiLogger":{"r":["rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"React":{"r":["rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"VideoCastingControl.react":{"r":["no9Df","Ewhs3","4UeD4","ihKKS","FwtnY","8TzMr","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"VideoLiveRewindControl.react":{"r":["no9Df","4UeD4","ihKKS","Uikak","FwtnY","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"VideoQuietModeControl.react":{"r":["no9Df","jQ2oA","4UeD4","ab0Pn","6qS6E","ihKKS","FwtnY","qAR1V","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"VideoSettingsControl.react":{"r":["40+zj","isakB","woilf","7AR0M","s6cwG","no9Df","AM+bO","DhoKa","JTZ86","yyld4","+CrQQ","RYSN8","4UeD4","Z88p8","SEhma","ud8fm","0Wg8h","SMErT","vqW6w","qhlyu","oAks5","6Fkk7","ihKKS","FwtnY","Sp+ie","T5BQ8","a1Ynl","nw7D1","7B7KV","xV8PQ","rm2ch","Jh1qa"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"VideoToHLSControl.react":{"r":["no9Df","DhoKa","HKZsO","4UeD4","0Wg8h","ihKKS","FwtnY","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"VideoWatchAndScrollControl.react":{"r":["no9Df","DhoKa","JTZ86","4UeD4","0Wg8h","ihKKS","FwtnY","U38Rt","7B7KV","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"VideoUploadMetadataMKVParser":{"r":["8bmT9","n3XWt","ZuDLd","qZB9j","67R\/7","mWYtD","Hr59R","H75eG","rm2ch"],"be":1},"VideoPlayerCea608CaptionsSource":{"r":["4eFD9","dUQGr","0Wg8h","Qo8hB","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"VideoPlayerWebVttCaptionsSource":{"r":["Hs4kZ","bqGgE","rm2ch"],"be":1},"FeedAnimatedImageShare.react":{"r":["no9Df","DhoKa","5HMsi","xMvz3","rm2ch","PfhC2"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"Sticker.react":{"r":["40+zj","tz4gj","nOigL","ihKKS","jY1Qu","xV8PQ","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"TextDelightController":{"r":["npASl","JTZ86","fB80B","5HMsi","pbQ27","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba","KeyframesRenderer","FBKeyframesLoggedSession","KeyframesAssetDecoder"],"r":["xV8PQ","fpTka","SEhma","DhoKa","KQ+lo","I4qBG","0Wg8h"]},"be":1},"FeedStoryUFIError.react":{"r":["HYsPF","no9Df","4UeD4","ihKKS","FfM3H","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFI2CommentsCountTooltipContent.react":{"r":["no9Df","NsNtU","4UeD4","Z88p8","ihKKS","W9QGd","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"UFI2SharesCountTooltipContent.react":{"r":["no9Df","NsNtU","4UeD4","Z88p8","ihKKS","W9QGd","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"UFI2ReactionIconTooltipContent.react":{"r":["no9Df","JTZ86","NsNtU","4UeD4","Z88p8","ihKKS","W9QGd","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"UFI2CommentAnimatedImageAttachmentPlayer.react":{"r":["isakB","T7b+m","AM+bO","Dj4L0","DhoKa","JTZ86","RYSN8","4UeD4","SEhma","0Wg8h","SMErT","vqW6w","ngE4J","VUABt","nAKA5","c6zYF","ihKKS","FwtnY","IUO2m","nw7D1","xV8PQ","upWiN","rm2ch","Jh1qa","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["r0iEM","5HMsi","q8aAI"]},"be":1},"UFI2ReactionsCountTooltipContent.react":{"r":["no9Df","NsNtU","4UeD4","Z88p8","ihKKS","W9QGd","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"QuickLogActionType":{"r":["Dj4L0"],"be":1},"QuickPerformanceLogger":{"r":["Dj4L0","0Wg8h","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFI2CommentArticleContext.react":{"r":["ihKKS","9vsls","VaLjK","79L46","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"UFI2CommentAttachmentContentFilterContainer.react":{"r":["no9Df","JTZ86","4UeD4","SEhma","veq2f","KtWKW","ihKKS","FwtnY","W5G9l","Sp+ie","79L46","ki0mE","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"UFI2CommentActorConstituentBadge.react":{"r":["no9Df","ihKKS","2B1a0","aNAVU","JgnSD","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"UFI2CommentPlaceInfoAttachment.react":{"r":["40+zj","C5ICj","tSrJ6","krylL","IOyuU","QGk8\/","mXK\/M","tz4gj","no9Df","AM+bO","Ob5Fh","DhoKa","JTZ86","yyld4","dUQGr","R46b9","RYSN8","4UeD4","Z88p8","SEhma","Fp8C6","0Wg8h","SMErT","29pR\/","VSt0C","e8WHZ","ma1kl","TYMlP","LI\/8K","c6zYF","iFIJS","ww+ZO","PYgcm","ihKKS","RHYGU","cYJiG","5IEYP","JDg4l","FwtnY","E1i6a","+CVWs","G6XJv","qLeWq","NyxKb","wxVMg","yXLBV","T5BQ8","i1BLU","nw7D1","xV8PQ","XBlzS","upWiN","rm2ch","ajmNg","To+dX"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["r0iEM","5HMsi","q8aAI"]},"be":1},"UFI2CodedErrorDialog.react":{"r":["no9Df","JTZ86","4UeD4","0Wg8h","ihKKS","PsXzn","nw7D1","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFI2CommentActorGroupMemberBadges.react":{"r":["LKWZA","no9Df","W1jDj","AM+bO","DhoKa","JTZ86","LDPcl","dUQGr","4UeD4","Z88p8","0Wg8h","SMErT","2U9PY","x9Rja","c6zYF","ihKKS","2f+r9","Uainn","5IEYP","FwtnY","+CVWs","UQjGy","JgnSD","upWiN","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"XUIAmbientNUX.react":{"r":["no9Df","JTZ86","4UeD4","ihKKS","FwtnY","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"GroupMemberActionSource":{"r":["Vb9NR"],"be":1},"UFIFeedbackMutator":{"r":["ISTT9","Tca5I","rm2ch"],"be":1},"ChatReliabilityInstrumentation":{"r":["nw7D1","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"MercuryJewelBootloadModules":{"r":["rm2ch","mZ2TX","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"MessengerGraphQLThreadFetcher.bs":{"r":["Dj4L0","0Wg8h","nOigL","ihKKS","nw7D1","xV8PQ","rm2ch","To+dX","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"MessengerGraphQLThreadlistFetcher.bs":{"r":["4z0Qn","Dj4L0","0Wg8h","nOigL","ihKKS","kBSCG","9fJ33","nw7D1","xV8PQ","rm2ch","To+dX","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"MercurySourceType":{"r":["qlMhz"],"be":1},"SimpleNUXMessageTypes":{"r":["T5BQ8"],"be":1},"UFICentralUpdates":{"r":["40+zj","SEhma","0Wg8h","ISTT9","GUwm5","tQxdF","ihKKS","\/5DSF","nw7D1","xV8PQ","rm2ch","To+dX","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"UFIActorSelector.react":{"r":["40+zj","no9Df","DhoKa","JTZ86","QTUih","4UeD4","SEhma","0Wg8h","ISTT9","GUwm5","tQxdF","ihKKS","QQpO9","\/5DSF","FwtnY","nw7D1","xV8PQ","rm2ch","To+dX"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"UFIAddCommentLiveTypingController":{"r":["bmIyz","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFIAttachedMediaPreview.react":{"r":["40+zj","no9Df","AM+bO","jQ2oA","DhoKa","JTZ86","fB80B","4UeD4","0Wg8h","bIfxC","0XyVw","ihKKS","5tvmb","XPWTT","FwtnY","p9Dq+","qLeWq","tLKRC","T5BQ8","xV8PQ","rm2ch","9yUr1","bspa7"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"UFICommentMarkdownFormattedLink.react":{"r":["CPmkK","JGyAf","no9Df","JTZ86","4UeD4","0Wg8h","ua3bD","IpY64","ISTT9","mZu06","tQxdF","ihKKS","\/5DSF","5IEYP","FwtnY","MVwE9","nw7D1","xV8PQ","rm2ch","bspa7"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"UFICommentMarkdownPreview.react":{"r":["Hnz7V","JGyAf","no9Df","JTZ86","0Qz\/x","4UeD4","Z88p8","V4XYk","ihKKS","pI7AA","06cdq","rm2ch","GTV\/f"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFICommentRemovalControls.react":{"r":["qr7Ui","Z88p8","ihKKS","rm2ch","bspa7","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFILiveCommentLinkPreview.react":{"r":["no9Df","JTZ86","4UeD4","PYgcm","ihKKS","iPulg","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFILiveVideoAnnouncementCTAContainer.react":{"r":["QGkap","40+zj","tz4gj","LKWZA","no9Df","DhoKa","JTZ86","4UeD4","Z88p8","SEhma","RTCkM","e8WHZ","oAks5","GUwm5","c6zYF","Dqx7i","ihKKS","5IEYP","FwtnY","G7B0B","jfPF1","hlLKO","L9N1c","qLeWq","po2\/O","8P4PI","nw7D1","xV8PQ","rm2ch","QEiKI","51yTN"],"rds":{"m":["BanzaiODS","BanzaiScuba","VisualCompletionGating"]},"be":1},"UFIUploader":{"r":["no9Df","AM+bO","DhoKa","dUQGr","Z88p8","SEhma","0Wg8h","hRuHw","8ELCB","aPhac","ihKKS","FwtnY","H75eG","nw7D1","rm2ch","DHXyo","RYSN8","T5BQ8","51yTN","xV8PQ"],"rds":{"m":["BanzaiODS","BanzaiScuba","VisualCompletionGating"]},"be":1},"EmojiPicker.react":{"r":["no9Df","DhoKa","JTZ86","4UeD4","Z88p8","SEhma","pPPG+","0Wg8h","bPItP","HVwj\/","add90","e8WHZ","5ducr","ihKKS","5IEYP","FwtnY","jfPF1","msROh","qLeWq","uhlnB","xKqRh","nw7D1","xV8PQ","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"PopoverMenu.react":{"r":["40+zj","no9Df","JTZ86","RYSN8","4UeD4","SEhma","0Wg8h","SMErT","nw7D1","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"XUIContextualDialog.react":{"r":["no9Df","JTZ86","4UeD4","Z88p8","0Wg8h","ihKKS","FwtnY","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"ReactXUIMenu":{"r":["no9Df","SEhma","nw7D1","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"XUIMenuSeparator.react":{"r":["woilf","no9Df","Z88p8","SEhma","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"Image.react":{"r":["no9Df","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"ChatContentSearchFlyout.react":{"r":["40+zj","UwLvl","no9Df","AM+bO","DhoKa","NGAcI","4UeD4","Z88p8","pPPG+","0Wg8h","XDoA0","v6cfL","s5BQL","e8WHZ","ihKKS","5IEYP","FwtnY","tUYls","qLeWq","MVwE9","nw7D1","rm2ch","0+vnD"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"SimpleNUXMessage":{"r":["ihKKS","T5BQ8","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"PlaceListLiveCommentAttachment.react":{"r":["40+zj","C5ICj","tSrJ6","krylL","IOyuU","QGk8\/","mXK\/M","tz4gj","no9Df","AM+bO","Ob5Fh","DhoKa","JTZ86","yyld4","dUQGr","8ZOng","R46b9","RYSN8","4UeD4","Z88p8","SEhma","Fp8C6","0Wg8h","SMErT","29pR\/","VSt0C","e8WHZ","ma1kl","TYMlP","LI\/8K","c6zYF","iFIJS","ww+ZO","PYgcm","ihKKS","RHYGU","cYJiG","5IEYP","JDg4l","FwtnY","E1i6a","+CVWs","G6XJv","qLeWq","NyxKb","wxVMg","yXLBV","T5BQ8","i1BLU","nw7D1","xV8PQ","XBlzS","upWiN","rm2ch","ajmNg","To+dX"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["r0iEM","5HMsi","q8aAI"]},"be":1},"UFIReactionsMenuImpl.react":{"r":["no9Df","DhoKa","JTZ86","0Wg8h","5HMsi","ihKKS","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFIReactionsNUX.react":{"r":["no9Df","JTZ86","4UeD4","0Wg8h","+g5ut","ihKKS","FwtnY","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"StickersFlyout.react":{"r":["40+zj","pQqPt","tz4gj","no9Df","DhoKa","JTZ86","RYSN8","4UeD4","Z88p8","SEhma","pPPG+","0Wg8h","nOigL","ua3bD","s5BQL","e8WHZ","GUwm5","WGwrK","ihKKS","jY1Qu","s7qTM","N1qgl","5IEYP","I4qBG","tUYls","qLeWq","T5BQ8","i1BLU","nw7D1","xV8PQ","wqYWn","rm2ch"],"rds":{"m":["Banzai","BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["r0iEM","5HMsi","q8aAI"]},"be":1},"StickersActions":{"r":["40+zj","nw7D1","xV8PQ","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"UFIScrollHighlight":{"r":["no9Df","i7Ezh","RYSN8","SEhma","Dk3Ru","rSdpp","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"ContextualLayerAutoFlip":{"r":["DhoKa","4UeD4","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"LayerTabIsolation":{"r":["no9Df","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"ContextualDialogArrow":{"r":["no9Df","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"FunnelLogger":{"r":["DhoKa","I4qBG","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"MultiPlacePageInfoCard.react":{"r":["40+zj","C5ICj","tSrJ6","krylL","IOyuU","QGk8\/","mXK\/M","tz4gj","no9Df","AM+bO","Ob5Fh","DhoKa","JTZ86","yyld4","dUQGr","RYSN8","4UeD4","Z88p8","SEhma","Fp8C6","0Wg8h","SMErT","29pR\/","VSt0C","e8WHZ","ma1kl","TYMlP","LI\/8K","c6zYF","iFIJS","ww+ZO","PYgcm","ihKKS","RHYGU","cYJiG","5IEYP","JDg4l","FwtnY","E1i6a","+CVWs","G6XJv","qLeWq","NyxKb","wxVMg","yXLBV","T5BQ8","i1BLU","nw7D1","xV8PQ","XBlzS","upWiN","rm2ch","ajmNg","To+dX"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["r0iEM","5HMsi","q8aAI"]},"be":1},"RelayFBEnvironment":{"r":["rm2ch","ihKKS"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"nullthrows":{"r":[],"be":1},"Tahoe":{"r":["6qS6E"],"be":1},"WebGraphQL":{"r":["ihKKS","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFICommentingAsConstituentHeader.react":{"r":["LCjoQ","no9Df","JTZ86","4UeD4","Z88p8","UYizf","ihKKS","bmIyz","aNAVU","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFIJoinEvent.react":{"r":["ET2op","ihKKS","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"ConstituentBadge.react":{"r":["no9Df","ihKKS","aNAVU","JgnSD","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFIReactionsAnimationPreloader":{"r":["2Sgzd","5HMsi","rm2ch"],"rds":{"m":["BanzaiODS","KeyframesRenderer","FBKeyframesLoggedSession","KeyframesAssetDecoder","BanzaiScuba"],"r":["fpTka","SEhma","DhoKa","KQ+lo","I4qBG","0Wg8h","xV8PQ","no9Df"]},"be":1},"UFIReactionsMenuWithAnimatedIcons.react":{"r":["no9Df","DhoKa","JTZ86","0Wg8h","5HMsi","ihKKS","rm2ch"],"rds":{"m":["BanzaiODS","KeyframesRenderer","KeyframesEnvironment","FBKeyframesLoggedSession","KeyframesAssetDecoder","BanzaiScuba"],"r":["fpTka","SEhma","KQ+lo","I4qBG","xV8PQ"]},"be":1},"PageCommentQuestionMessageCard.react":{"r":["TeSw5","Vgu\/8","no9Df","Dj4L0","4UeD4","Z88p8","gTT3H","ihKKS","qLeWq","nw7D1","xV8PQ","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"UFICommentPrivateReplyNux.react":{"r":["no9Df","DhoKa","JTZ86","4UeD4","0Wg8h","ihKKS","IKC6k","FwtnY","MVwE9","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"LivingRoomActions":{"r":["DhoKa","KVdsT","nw7D1","xV8PQ","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"LivingRoomStoreInitializer":{"r":["9ac\/e","r0iEM","DhoKa","LDPcl","Z88p8","KVdsT","5HMsi","ihKKS","gRKg2","\/Nybe","BetMg","nw7D1","xV8PQ","rm2ch","q8aAI","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"]},"be":1},"LivingRoomTypedLogger":{"r":["9ac\/e","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"LivingRoomLoggerAction":{"r":["SDzVZ"],"be":1},"TextDelightNUX.react":{"r":["npASl","tSrJ6","no9Df","DhoKa","JTZ86","fB80B","4UeD4","hrp5s","5HMsi","SvtpO","ihKKS","FwtnY","I4qBG","pbQ27","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","KeyframesRenderer","FBKeyframesLoggedSession","KeyframesAssetDecoder"],"r":["xV8PQ","fpTka","SEhma","KQ+lo","0Wg8h"]},"be":1},"TextDelightNUXLogger":{"r":["tSrJ6","DhoKa","SvtpO","I4qBG","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"PrivateCommentsLogger":{"r":["4UwqC","DhoKa","I4qBG","EgfGh","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"GroupMemberBadgeWithTooltip.react":{"r":["LKWZA","no9Df","W1jDj","AM+bO","DhoKa","JTZ86","LDPcl","dUQGr","4UeD4","Z88p8","0Wg8h","SMErT","2U9PY","x9Rja","c6zYF","ihKKS","2f+r9","Uainn","5IEYP","FwtnY","+CVWs","upWiN","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"FriendsOnlyBadge.react":{"r":["4ovfo","no9Df","ihKKS","rm2ch","bspa7"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFIFixSuggestionsButton.react":{"r":["2U9PY","ihKKS","YfbyM","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFIFixSuggestionsDetails.react":{"r":["40+zj","tSrJ6","aMxSg","tz4gj","no9Df","DhoKa","JTZ86","4UeD4","Z88p8","ym0w2","0Wg8h","XyJfT","Yq8FY","ihKKS","JDg4l","FwtnY","qLeWq","xV8PQ","rm2ch","vePHR"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"FBAmbientPulseNUX.react":{"r":["40+zj","C5ICj","rgw0Z","tz4gj","no9Df","DhoKa","JTZ86","4UeD4","SEhma","0Wg8h","bGxbi","ihKKS","JDg4l","FwtnY","p9Dq+","y9nqs","qLeWq","xV8PQ","upWiN","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"TextDelightInComposerLogger":{"r":["tSrJ6","DhoKa","I4qBG","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFILivingRoomAnnouncementCTA.react":{"r":["9ac\/e","no9Df","DhoKa","KVdsT","ihKKS","lYBvK","GeyME","nw7D1","xV8PQ","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"UFICommentVoteNUX.react":{"r":["40+zj","no9Df","syXcF","DhoKa","JTZ86","4UeD4","kN9l0","0Wg8h","ISTT9","ihKKS","FwtnY","xV8PQ","rm2ch","bspa7"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"UFIReactionsAnimatedLikeActionIcon.react":{"r":["fpTka","5HMsi","rm2ch"],"rds":{"m":["BanzaiODS","KeyframesRenderer","FBKeyframesLoggedSession","KeyframesAssetDecoder","BanzaiScuba"],"r":["SEhma","DhoKa","KQ+lo","I4qBG","0Wg8h","xV8PQ","no9Df"]},"be":1},"XMessengerPivotsController":{"r":["t6GyV","rm2ch"],"be":1},"UFICommentPivotBlock.react":{"r":["40+zj","tz4gj","no9Df","4UeD4","ihKKS","jfPF1","qLeWq","h6Szp","xV8PQ","rm2ch","bspa7"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"UFIEditCommentNux.react":{"r":["no9Df","JTZ86","4UeD4","N3rM5","ihKKS","FwtnY","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFICommentVoteFirstArrowNUX.react":{"r":["40+zj","no9Df","DhoKa","JTZ86","4UeD4","0Wg8h","ihKKS","FwtnY","Az3ld","xV8PQ","rm2ch","bspa7"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"UFICommentPivotFailedDialog.react":{"r":["40+zj","gPhDT","tz4gj","no9Df","DhoKa","JTZ86","4UeD4","0Wg8h","ihKKS","JDg4l","FwtnY","qLeWq","xV8PQ","rm2ch","To+dX"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"UFIGroupsPinnedCommentsNux.react":{"r":["no9Df","JTZ86","4UeD4","ihKKS","FwtnY","MVwE9","JJBMp","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"VideoStarsWalletQueryWebGraphQLQuery":{"r":["AQbZ7","rm2ch"],"be":1},"VideoStarsSpendMutationWebGraphQLMutation":{"r":["rm2ch","30wmF"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"PagePrivateReplyMessageCard.react":{"r":["Vgu\/8","no9Df","4UeD4","Z88p8","gTT3H","ihKKS","WKDEm","4vR9S","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"GameTippingCustomTipMetaDataQueryWebGraphQLQuery":{"r":["bmIyz","rm2ch"],"be":1},"VideoCommunityModerationSubscription":{"r":["s4wIF","ihKKS","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"ReportCommunityModerationEventMutation":{"r":["nHbqB","ihKKS","7Lihg","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"RemoveCommunityModerationEventMutation":{"r":["+TpkD","7lKC3","ihKKS","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"CollectionCurationMechanisms":{"r":["LuW3P"],"be":1},"CollectionsDisplaySurface":{"r":["BGHqH"],"be":1},"SavedStateActions":{"r":["q2wgV"],"be":1},"UFICommentRemoveDialog":{"r":["no9Df","cjC4v","JTZ86","RYSN8","4UeD4","ihKKS","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFIActionLinkController":{"r":["40+zj","tSrJ6","CPmkK","no9Df","DhoKa","JTZ86","4UeD4","SEhma","gTT3H","0Wg8h","SMErT","ua3bD","ISTT9","1y5Je","GUwm5","tQxdF","PYgcm","ihKKS","\/5DSF","Smt4s","vePHR","MVwE9","gVdqy","nw7D1","xV8PQ","rm2ch","To+dX","stOXu","bspa7"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"UFIRetryActions":{"r":["40+zj","8ay4F","SEhma","0Wg8h","ISTT9","GUwm5","tQxdF","ihKKS","\/5DSF","nw7D1","xV8PQ","rm2ch","To+dX","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"UFISubscriptionUpdates":{"r":["40+zj","SEhma","0Wg8h","2U9PY","Wz+3L","ISTT9","GUwm5","tQxdF","ihKKS","6kgLx","\/5DSF","nw7D1","xV8PQ","rm2ch","To+dX","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"UFIUserActions":{"r":["40+zj","SEhma","0Wg8h","ISTT9","GUwm5","tQxdF","ihKKS","\/5DSF","nw7D1","xV8PQ","rm2ch","To+dX","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"UFILiveTypingIndicator.react":{"r":["no9Df","JTZ86","RYSN8","UYizf","SMErT","ISTT9","ihKKS","PAPKn","rm2ch","UDUHA"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFICommentNuxForGroupMallAds.react":{"r":["jtkkW","no9Df","SGr0U","4UeD4","Z88p8","vodRa","ihKKS","YmtTG","xV8PQ","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"UFIGroupMallAdsLikeNux.react":{"r":["no9Df","JTZ86","4UeD4","kEv1C","ihKKS","sQuNJ","FwtnY","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFIOrderingModeSelectorContainer.react":{"r":["40+zj","no9Df","JTZ86","RYSN8","4UeD4","SEhma","0Wg8h","SMErT","ua3bD","Wz+3L","ISTT9","GUwm5","tQxdF","PYgcm","ihKKS","\/5DSF","nw7D1","xV8PQ","rm2ch","To+dX"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"UFICrowdsourceLabelingContainer.react":{"r":["bW5m3","no9Df","4UeD4","JQyio","ihKKS","L6stH","g6V8H","imiIB","VUsNX","xV8PQ","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"UFIReactionsSaveDialog.react":{"r":["7gPrl","no9Df","AM+bO","DhoKa","JTZ86","aEggD","dUQGr","4UeD4","Z88p8","EYAt\/","qtvn6","3UzVH","ihKKS","FwtnY","lcNAp","gVdqy","T5BQ8","xV8PQ","ojoq7","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"InlineFeedback.react":{"r":["QMKQw","2EyDR","ihKKS","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"XSaveController":{"r":["y9nqs","rm2ch"],"be":1},"UFICommentSecureAccountDialog":{"r":["no9Df","JTZ86","RYSN8","4UeD4","ihKKS","x4+NR","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFICommentDeleteAndMemberRemoveDialog":{"r":["QGkap","QGk8\/","no9Df","AM+bO","JTZ86","RYSN8","4UeD4","Z88p8","0Wg8h","iU9Tk","ihKKS","I4qBG","+CVWs","fnCFa","i1BLU","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFIMemberMuteDialog":{"r":["QGkap","40+zj","C5ICj","tSrJ6","UxwTG","IOyuU","tz4gj","no9Df","AM+bO","DhoKa","JTZ86","yyld4","fB80B","RYSN8","4UeD4","Z88p8","SEhma","JoEMT","UYizf","0Wg8h","bIfxC","e8WHZ","x9Rja","IDH9a","KX7mp","c6zYF","ihKKS","RHYGU","\/5DSF","Uainn","5IEYP","JDg4l","FwtnY","p9Dq+","I4qBG","y9nqs","AMi6p","qLeWq","NyxKb","T5BQ8","i1BLU","nw7D1","xV8PQ","upWiN","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["r0iEM","5HMsi","q8aAI"]},"be":1},"GroupsMemberMuteDurationDefaults":{"r":["7F23t"],"be":1},"LivingRoomUFIActions":{"r":["DhoKa","M6CPB","nw7D1","xV8PQ","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"promiseDone":{"r":[],"be":1},"UFILiveVideoCommentUtil":{"r":["JGyAf","no9Df","JTZ86","4UeD4","I9TBb","ihKKS","FwtnY","T5BQ8","xV8PQ","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"CommentTTLEndLogger":{"r":["Dj4L0","0Wg8h","qsYFI","bmIyz","K3dJE","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFIEditPostActionLink.react":{"r":["no9Df","JTZ86","4UeD4","SEhma","n6+WY","PYgcm","ihKKS","bpKTk","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFIPostNowActionLink.react":{"r":["no9Df","JTZ86","4UeD4","j6Hfz","PYgcm","ihKKS","7VLCL","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"PagePostEngagementFrictionActions":{"r":["40+zj","isakB","tz4gj","no9Df","DhoKa","JTZ86","4UeD4","0Wg8h","MnwA3","ihKKS","JDg4l","qLeWq","xV8PQ","upWiN","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"UFIReplacePinnedCommentDialog":{"r":["KD9\/X","no9Df","JTZ86","RYSN8","4UeD4","ihKKS","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"PinnedStreamingCommentPinSubscription":{"r":["SDzVZ","ihKKS","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"PinnedStreamingCommentUnpinSubscription":{"r":["SDzVZ","ihKKS","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"ShareWarningFactCheckLinkLogger":{"r":["qYpWr","DhoKa","add90","I4qBG","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFIMentionsInput.react":{"r":["a1kze","40+zj","tSrJ6","JGyAf","tz4gj","no9Df","AM+bO","DhoKa","JTZ86","+QugF","4UeD4","SEhma","0Wg8h","add90","ihKKS","Zog71","FwtnY","I4qBG","V74nh","qLeWq","nw7D1","xV8PQ","rm2ch","To+dX","bspa7"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"XUIDialogButton.react":{"r":["no9Df","4UeD4","ihKKS","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"XUIDialogBody.react":{"r":["no9Df","4UeD4","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"XUIDialogFooter.react":{"r":["no9Df","4UeD4","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"XUIDialogTitle.react":{"r":["no9Df","4UeD4","ihKKS","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"XUIGrayText.react":{"r":["no9Df","4UeD4","Z88p8","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"DialogX":{"r":["no9Df","JTZ86","ihKKS","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFI2CommentActorName.react":{"r":["ihKKS","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"FeedStoryUFICommentActionLinks.react":{"r":["no9Df","JTZ86","4UeD4","ihKKS","FwtnY","rm2ch"],"rds":{"m":["UFICreatorInfo.react","BanzaiODS","BanzaiScuba","UFI2FeedbackReactMutation","UFI2UnhideCommentMutation","UFI2ReactionsMenu","BladeRunnerClient","UFI2BanActorMutation","SkywalkerUtils","MqttLongPollingRunner","KeyframesRenderer","KeyframesEnvironment","FBKeyframesLoggedSession","KeyframesAssetDecoder"],"r":["0Wg8h","5HMsi","I4qBG","xV8PQ","pL+2L","q8aAI","r0iEM","DhoKa","fpTka","SEhma","KQ+lo"]},"be":1},"FeedStoryUFICommentActorLinkBadges.react":{"r":["JTZ86","ihKKS","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"FeedStoryUFICommentBody.react":{"r":["no9Df","JTZ86","ihKKS","FwtnY","rm2ch"],"rds":{"m":["UFIVideoPlayerRegistry","BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"FeedStoryUFICommentAttachments.react":{"r":["no9Df","JTZ86","4UeD4","ihKKS","FwtnY","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"UFI2ProfileLink.react":{"r":["ihKKS","rm2ch","no9Df"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFI2CommentVideoAttachmentPlayer.react":{"r":["40+zj","isakB","Mb1fd","no9Df","AM+bO","Dj4L0","DhoKa","JTZ86","FAq7+","RYSN8","4UeD4","Z88p8","SEhma","0Wg8h","SMErT","vqW6w","ngE4J","VUABt","nAKA5","6qS6E","5HMsi","c6zYF","ihKKS","9vsls","n0fh6","FwtnY","bxhCT","ifqFW","qLeWq","gVdqy","NyxKb","IUO2m","nw7D1","xV8PQ","upWiN","rm2ch","q8aAI","Jh1qa","4UFZm"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["r0iEM"]},"be":1},"getCommentMenuDeleteItem":{"r":["UTPxx","no9Df","4fxwX","JTZ86","RYSN8","4UeD4","SEhma","ihKKS","7T+VW","nw7D1","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"getCommentMenuHideItem":{"r":["no9Df","SEhma","ihKKS","lS7aW","7T+VW","oHDrD","nw7D1","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"getCommentMenuEditItem":{"r":["no9Df","4fxwX","SEhma","ihKKS","7T+VW","nw7D1","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"getCommentMenuDeleteAndRemoveItem":{"r":["QGkap","UTPxx","QGk8\/","no9Df","AM+bO","JTZ86","RYSN8","4UeD4","Z88p8","SEhma","0Wg8h","iU9Tk","tQxdF","ihKKS","\/5DSF","I4qBG","+CVWs","fnCFa","i1BLU","nw7D1","xV8PQ","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["r0iEM","5HMsi","q8aAI"]},"be":1},"getCommentMenuItemDivider":{"r":["no9Df","SEhma","iU9Tk","fnCFa","nw7D1","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"getCommentMenuMuteCommenterItem":{"r":["QGkap","40+zj","C5ICj","tSrJ6","UxwTG","IOyuU","tz4gj","no9Df","AM+bO","DhoKa","JTZ86","yyld4","fB80B","RYSN8","4UeD4","Z88p8","SEhma","JoEMT","UYizf","0Wg8h","bIfxC","e8WHZ","x9Rja","iU9Tk","IDH9a","KX7mp","c6zYF","ihKKS","RHYGU","\/5DSF","Uainn","5IEYP","JDg4l","FwtnY","p9Dq+","I4qBG","y9nqs","AMi6p","qLeWq","fnCFa","NyxKb","T5BQ8","i1BLU","nw7D1","xV8PQ","upWiN","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["r0iEM","5HMsi","q8aAI"]},"be":1},"getCommentMenuItemRemoveTextDelightsItem":{"r":["no9Df","4fxwX","SEhma","ihKKS","6txuB","nw7D1","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"UFI2RemoveTextDelightsNUX.react":{"r":["tSrJ6","no9Df","DhoKa","JTZ86","4UeD4","lfi52","SvtpO","ihKKS","FwtnY","I4qBG","7uSow","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"getCommentMenuDeleteWithFeedbackItem":{"r":["UTPxx","no9Df","SEhma","iU9Tk","ihKKS","Smt4s","fnCFa","nw7D1","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"getCommentMenuItemGiveFeedbackOrReport":{"r":["no9Df","Dj4L0","SEhma","ihKKS","7T+VW","9vsls","nw7D1","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"getCommentMenuItemReportToAdmins":{"r":["no9Df","Dj4L0","SEhma","ihKKS","7T+VW","nw7D1","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"getCommentMenuItemBanCommenter":{"r":["wnfXP","no9Df","SEhma","pL+2L","AbpTy","ihKKS","042Z4","nw7D1","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"getCommentMenuDeleteAndBlockItem":{"r":["UTPxx","no9Df","JTZ86","4UeD4","SEhma","iU9Tk","ihKKS","xVMOY","tVQN2","nw7D1","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"getCommentMenuItemRemoveTag":{"r":["sZZQ+","no9Df","JTZ86","q6Dyc","RYSN8","4UeD4","SEhma","uCnXk","51wD9","ihKKS","I2iPx","nw7D1","njqlm","xV8PQ","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["r0iEM","5HMsi","q8aAI"]},"be":1},"getCommentMenuItemCreateDetailedReport":{"r":["no9Df","JTZ86","ZGrPB","4UeD4","SEhma","ihKKS","SqrUc","INvOs","nw7D1","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["xV8PQ"]},"be":1},"UFI2CommentReactionIconTooltipContentRenderer.react":{"r":["no9Df","JTZ86","NsNtU","4UeD4","Z88p8","ihKKS","LZO4S","W9QGd","reWFz","rm2ch"],"rds":{"m":["BanzaiODS","BanzaiScuba","BladeRunnerClient","SkywalkerUtils","MqttLongPollingRunner"],"r":["xV8PQ","r0iEM","5HMsi","q8aAI"]},"be":1},"WIGHovercardGlimmer.react":{"r":["pQqPt","M5qW9","oM+kH","FbEk3","GNNkd","ihKKS","s7qTM","N1qgl","wqYWn","rm2ch","ntaFj","no9Df"],"rds":{"m":["BanzaiODS","WebDevicePerfInfoLogging","BanzaiScuba"],"r":["0Wg8h","xV8PQ"]},"be":1},"UFIShareNowMenu.react":{"r":["40+zj","tSrJ6","X2mXp","tz4gj","no9Df","7P7cP","AM+bO","DhoKa","JTZ86","yyld4","dUQGr","fB80B","RYSN8","4UeD4","Z88p8","SEhma","BI\/I3","0Wg8h","SMErT","ZhD31","8ELCB","SIxWW","SOPeK","UJYp8","ihKKS","OSXsJ","Zog71","0T5sS","FwtnY","I4qBG","NO\/gZ","V74nh","qLeWq","H75eG","MVwE9","T5BQ8","nw7D1","trA+M","xV8PQ","rm2ch","q8aAI","To+dX","51yTN"],"rds":{"m":["BanzaiODS","BanzaiScuba","VisualCompletionGating"]},"be":1}});});</script> <script>requireLazy(["InitialJSLoader"], function(InitialJSLoader) {InitialJSLoader.loadOnDOMContentReady(["NyxKb","gTT3H","SEhma","rm2ch","51yTN","DhoKa","ihKKS","Uainn","Dj4L0","4UeD4","Z88p8","0Wg8h","QeMV0","+CVWs","qLeWq","nw7D1","xV8PQ","40+zj","woilf","R\/GuS","RYSN8","SMErT","MnwA3","1+i5d","H75eG","po2\/O","T5BQ8","upWiN","lUGK9","oAks5","iFIJS","prsk2","q8aAI","C5ICj","pQqPt","5\/qRq","dUQGr","qumKy","FbEk3","ilIyQ","ngE4J","5HMsi","0hash","Zog71","sK9jR","N1qgl","J3FJG","IUO2m","wqYWn","Jh1qa","wX6vm","YLjVu","NYwGO","FEt5G","\/Nybe","b9A3+","Mb1fd","FAq7+","vqW6w","VUABt","nAKA5","8ELCB","6qS6E","n0fh6","YUh4u","bmJyN","yEyx9","syI6x","04xdB","Rodrh","dWm5x","ifqFW","bHUSB","9ac\/e","r0iEM","Wz+3L","ISTT9","GUwm5","M6CPB","tQxdF","6kgLx","gRKg2","\/5DSF","To+dX","tSrJ6","CPmkK","liORJ","qpkv3","ua3bD","Tkr6T","MVwE9","1h9Z5","0v71u","Smt4s","vePHR","stOXu","qfxLC","YRJGw","4UFZm","ntaFj","v2nGa","fpTka","KQ+lo","I4qBG","eYnZe","thnei","P7N\/4","fh4tn","9MqX9","pL+2L","1XgS\/","kT\/vD","eJrfj","WhvCI","HO1KZ","aF9iP","00rBN","jEALs"]);});</script> <script>onloadRegister_DEPRECATED(function (){try { $("email").focus(); } catch (_ignore) { }}); onloadRegister_DEPRECATED(function (){try { $("email").focus(); } catch (_ignore) { }}); onafterloadRegister_DEPRECATED(function (){CavalryLogger.getInstance("6779882246364404230-0").collectBrowserTiming(window)}); onafterloadRegister_DEPRECATED(function (){window.CavalryLogger&&CavalryLogger.getInstance().setTimeStamp("t_paint");}); onafterloadRegister_DEPRECATED(function (){if (window.ExitTime){CavalryLogger.getInstance("6779882246364404230-0").setValue("t_exit", window.ExitTime);};});</script>
FB payload
2020-01-09T13:46:21.000Z
(Nokian|BFGoodrich|Pirelli|Toyo|Continental|Hankook|Mitas)\s+(.*?)\s+(\d+)/(\d+)\s*([a-z]+)(\d+)C?\s+([\/\d]+)([a-z]+)\s*([a-z]+)?\s*(RunFlat|Run Flat|ROF|ZP|SSR|ZPS|HRS|RFT)?\s*.*?\s*(TT|TL|TL/TT)
Toyo H08 195/75R16C 107/105S TL Летние
Шины
2019-05-23T23:53:17.000Z
Encontra qualquer preço presente num documento.
(?i)(?m)(?<![a-z]|\.|\.\d)(?:\d{1,4})(?:[.,\s]\d{3})*(?:[.,]\d{2})(?!\%|\d|\.|\s\.|\scm|cm|pol|\spol)
TICKET RESTAURANT DE PORTUGAL, Infante Santo, 1350—177 Lisboa S.A. AV. 23 A/D NIF e MAT.: Cap. 500423849 Soc. 500.000 Euros Z43 CDUCket ;fensmoº 000370.19 FAS—SISTEMAS DE INFORMACAO LDA TAGUS PARK EDIFICIO QUALIDADE B2-1B 2740—120 PORTO SALVO W W W W W W W W W W W r W W W W W W W W W W W W W W W W W W W W W W [ fwj+—Processado por programa certificado n. . ticket SEFVIÇOS Delegação Nºrte R. das Cardosas, 1495 4425 - 510 S.Pedro Fins Maia Delegação Sul Av. Infante Santo, 21 A 1350-177 Lisboa Tel. 210 420 325 - Fax. 210 420 365 Hcket©tkketpt Hcketpt Pagamento por transferencia bancaria: IBAN: PT50 0079 0000 64938339101 80 Delegação Centro R. Álvaro Pires de Miranda, Lt. 46 ,1.º Dto. A ' 2415-369 Leiria Tel. 228 302 900 ' Fax. 228 302 904 Tel. 244 826 378 ' Fax. 244 823 689 2292/AT W V/REQUISIÇÃO V/Nº CONTRIBUINTE Nº CLIE_NTE W DATA W WI """ 777 “ª" ' W ORIGINAL DA ; W WPT 502524588 EET 000370W 2017— 05- 03 FACTURA FET 17/1208 TICKET ENSINO fornecidos: , , W % QUANHDADE ; VALORUNnAmo W VALORTOTAL Emissão Ticket Ult. Ticket Cod. Produto « W 17002775 00015396 00015397 105.00/ET W 2W 105.00W 210.00 17002776 00015398 00015400 140.00/ET W 3; 140.00W 420.00 W W W ? W W * W ., W W W W W W 1 W W W . í W IVA ISENTO — Alineas &) e c) . 27 Artigo 9 W 5 W SUB-TOTAL * 630 . OOW (*) L “2__ W W _“ “__mw ___-“ _, "I W wannn CWAEWKO 6.50% 23% TOTAL€ & Euros 630.00 40.95 .42 680.37 & Euros 630.00 40.95 9.42 680.37 288.890.234,23 SEISCENTOS E OITENTA EUROS E TRINTA E SETE CENTIMOS **************** ******************************************************************** SWIFT/BIC: BPNPPTPL at Delegação Madeira Calçada de São Lourenço, nº 3, 2 C 9000-061 Funchal Tel. 291 225 727 ' Fax. 291 230 694
Preços
2017-06-08T08:23:16.000Z
^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), ([0-3][0-9]) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) ([0-9]{4}) ([01][0-9]|2[0-3])(:[0-5][0-9]){2} GMT$
Sun, 06 Nov 1994 08:49:37 GMT
RFC2616 HTTP Header Date
2015-10-21T13:35:46.000Z
Verify if the given text is a version tag, like git tags for versions in the git flow method
^[0-9]*(\.[0-9]*)*?(-[^\s]*)?$
0
version tag
2016-09-11T21:11:15.000Z
(,?(\w+))\1{2,}
i,i,i,u,br,br,p,p,p,p,br,br,br,br,div,div,div,div,br,br,br,p
Failure case for repeated strings
2014-10-29T13:11:11.000Z
((?: DOCID)): (?<value>[0-9]+(\s+))
DOCID: 0000011111
DOTNET
2015-10-29T09:53:23.000Z
HTTP\/\d\.\d\s(\d{3})
HTTP/1.1 302 See other Date: Tue, 17 Feb 2015 20:20:48 GMT Server: Apache X-Powered-By: PHP/5.5.21 Set-Cookie: 5e8627afafd16a920dac4dbb644715a5=ue1gprimq6rb5r4qsb8sk28jb2; path=/; HttpOnly Location: http://fake.dk/da/ Connection: close Content-Type: text/html; charset=utf-8 Set-Cookie: SERVERID=; path=/ HTTP/1.1 200 OK Date: Tue, 17 Feb 2015 20:20:48 GMT Server: Apache X-Powered-By: PHP/5.5.21 Set-Cookie: 76726d50abd3edd601ecfbc19fe61c87=da-DK; path=/ Set-Cookie: 76726d50abd3edd601ecfbc19fe61c87=da-DK P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Last-Modified: Tue, 17 Feb 2015 20:20:48 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Connection: close Content-Type: text/html; charset=utf-8 Set-Cookie: SERVERID=; path=/ <!doctype html> <html lang="da"> <head> </head> <body> </body> </html>
Match HTTP error code
2015-07-23T16:26:32.000Z
^[A-z]([\w\d_\.])*@[\w\d_]+\.[A-z](\w{1,3})$
EmailRegex
2019-08-15T23:20:36.000Z
Final version used in script.
(<(/|)(!--|div|span|a|img|p)[^>]*>(\n|)|&nbsp;)
mass <=45 and >=30g Contrary to <FM> reading < 2 DAC hours ... reading > 2 DAC hours Landon <[email protected]> <!-- this is an html comment --> <DIV> <div></div> <p> <P> <SPAN> <span style="stuff and yo"> <a href=""><img src="https://lanl.com"></a> Here is:&nbsp; more text
PFITS Comments Strip HTML Tags
2017-12-21T21:55:15.000Z
^"(.*)" (.*), (.*)
Description "Mulligan" neutered male, Brindle Bullmastiff "Tiny" male, tan and white Boxer mix "Charlie" neutered male, black and white Labrador Retriever mix "Nala" spayed female, white and brown brindle Pit Bull mix "Lexie" female, white and black Pit Bull "Holly" Spayed female, white Labrador/Pitbull mix "Lincoln" male, fawn and white Pit Bull Terrier "Sparkles" spayed female, Brindle Plott Hound mix "Missy" Spayed Female, red/white Pitbull mix "Rita" female, brown Australian Shepherd "Miles Davis" female, gold/white Golden Retriever "Lacy" spayed female, Labrador Retriever Mix "Clementine" spayed female, black and white Austrailian Cattle dog "Coronel" Male, Tan/Black German Shepherd mix "Lady Bug" spayed female, white/black Pit bull/Jack Russell mix "Buddy" male, blue brindle and white Pitbull mix "Boomer" neutered brown Pit Bull Mix "Weezer" female, Tan/Brown German Shepherd "Little Girl" spayed female, brown brindle and white Bull Terrier "Diva" intact female, tri-color Pit Bull "Jack" neutered male, red/white Labrador Retriever mix "Salty" male, brown and white Boxer "G" male, brown Pit Bull/Boxer mix "Keely" spayed female, Red Labrador Retriever mix "Tyson" neutered male, German Shepherd "Tug" male, brown merle and white Queensland Heeler mix "Shebba" female, white Pit Bull mix "Blue" male, blue Pit Bull mix "Pinky" female, white Boxer mix "Ladybird" Spayed female, yellow brindle and white Pit Bull mix "Dozer" neutered male, white and red Rhodesian Ridgeback "Lahlo" spayed female, tan Boxer mix "Maya" spayed female, brown/white Pitbull mix "Cinnamon" female, red and white Border Collie "Taz" neutered male, brown brindle Boxer mix "Lily" female, black and white Chihuahua "Abbo" neutered male, white/brown Great Pyrenees mix "Milo" neutered male, white/brown, German Short-haired Pointer "Lia" spayed female, white/black Pit Bull/Jack Russell mix "Sissy" female, tan and black German Shepherd "Nippy" female, black and tan Shepherd mix "Ginger" spayed female, red and white American Fox Terrier mix "Jonah" female, brown and white Pit Bull mix "Diego" neutered male, cream and white Great Pyrenees "June" female, Brindle Pit Bull Terrier "Maia" female, white/tan Pit Bull mix "Iko" neutered male, Brown Brindle Catahoula mix "Zues" neutered male, blue and white Great Dane "Tank" neutered, black/grey German Wire-haired Pointer "Bumpy" neutered male, white and black Bull Terrier "Negro" neutered male, black, tan and white Chihuahua mix "Lucy" spayed female, brown brindle and white Boxer mix "Austin" male, red merle Australian Shepherd "Aries" spayed female, blue Cane Corso "Bella" spayed female, Tan and White Pit Bull mix "Gucio" male, black Giant Schnauzer "Kilo" neutered male, red and white Pit Bull mix "Chuy" spayed female, brown brindle and white Boxer mix "Flint" neutered male, blue Blue Lacy mix "Sydney" spayed female, Tricolor/Black Beagle "Sunny" Neutered Male, Brown/Tan Shepherd mix "Lucky" male, black and tri-colored Chihuahua "Cleo" female, black Labrador Retriever mix
Dogs
2019-03-11T00:57:51.000Z
example
(?:[d|e]{10})
>|title| information asdfsdfsdfsasdfsdfsdfsasdfsdfsdfs asseefadfefeeedddeeeedddasdfsdf asdfsdfsdfsasdfsdfsdfsasdfsdfsdfs asseefadfefeeedddeeeedddasdfsdf >|title| information asseefadfefeeedddedeedddasdfsdf asseefadfeasdfsdfsdfsasdfsdfdfsdf asdfsdfsdfsasdfsdfsdfsasdfsdfsdfs asseefadfefeeedddedeedddasdfsdf
example
2021-07-13T06:44:29.000Z
Used this for a lab in my R class. We copied and pasted WHAS 500 data. The the data values in the raw data do not have quotes around them.
(\d{1,2}\/\d{1,2}\/\d{2})
1 83 1 89 152 78 25.54051 1 1 0 0 0 1 0 1 1/13/97 1/18/97 12/31/02 5 0 2178 0
Add quotes around unquoted dates
2020-06-04T14:43:50.000Z
xx
v
zz
2016-08-04T21:35:46.000Z
Check if a css class is bootstrap responsive grid one (like col-sm-6 for example)
^col\-(sm|xs|md|lg)\-([1-9]|1[0-2])$
col-sm-1 col-xs-12 col-md-12 col-lg-8 col-sms-1 col-xsd-12 col-xmd-12 col-lgd-8 col-sm-17 col-xs--1 col-md-0 col-lg-122 col-lg-82 col-xs-6 //^col\-(sm|xs|md|lg)\-(1|2|3|4|5|6|7|8|9|10|11|12)$
Bootstrap responsive grid class detection
2015-10-14T09:17:41.000Z
grab phase/chem formula/chem name/CAS
(\d+)\s+((?:[A-Za-zA-Z0-9]{0,3})+)\s+((?:[A-Za-z0-9\)\(\]\:\/<>\[\"\.\,\+\'\-]{2,} ?)+)\s+(\d{2,7}-\d{2}-\d)
1 CH4 Methane 74-82-8 2 C2H2 Ethyne 74-86-2 5 C3H4 Propadiene 463-49-0 6 C3H4 Propyne 74-99-7 7 C3H6 Cyclopropane 75-19-4 10 C4H2 Butadiyne, Diacetylene 460-12-8 11 C4H4 1-Buten-3-yne, Vinylacetylene 689-97-4 12 C4H6 1,2-Butadiene 590-19-2 14 C4H6 Dibenzo[b,e]oxepine 107-00-6 16 C4H6 Cyclobutene 822-35-5 17 C4H8 1-Butene 106-98-9 18 C4H8 (E)-2-Butene 624-64-6 19 C4H8 (Z)-2-Butene 590-18-1 22 C4H8 Pyrazolo[4',3':6,7]oxepino[4,5-b]indole 115-11-7 23 C4H10 Butane 106-97-8 27 C5H8 Bicyclo[2.1.0]pentane 185-94-4 29 C5H8 3-Methyl-1-butyne 598-23-2 35 C5H8 (E)-1,3-Pentadiene 2004-70-8 41 C5H8 Spiro[2.2]pentane 157-40-4 45 C5H10 cis-1,2-Dimethylcyclopropane 930-18-7 66 C6H8 cis, anti, cis-Tricyclo[3.1.0.0(2,4)]hexane 21531-33-9 70 C6H10 2,3-Dimethyl-1,3-butadiene 513-81-5 71 C6H10 [1,1'-Binaphthalene]-3,3',4,4'-tetramine 513-81-5
expression 1
2016-08-17T17:44:55.000Z
Matches a valid Pushjet UUID
[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}
00000000-0000-0000-0000-000000000000
Pushjet UUID Match
2016-06-08T18:42:51.000Z
(\b\d+(?:[\.\,]\d+)*(?:da|[yzafpnμmcdhkMGgTPEZY])?(?:hz|[mgrlvw])?\b)
2khz 2hz 30.89mw 30.89mm 100,98da 200da 100hz 90hz 90Mv
number-unit-wo-space
2018-04-03T01:52:17.000Z
Test
Regular Expression
A U F G A B E Finden Sie alle Hinweise auf Fußnoten ("zur Fussnote") im Text. Textquelle: Kollmann, in: Dauner-Lieb/Langen, § 305 Rn. 10f. T E X T: Vertragsbedingungen sind vorformuliert, wenn sie vor Vertragsabschluss bereits fertig aufgestellt sind. Dazu müssen sie auf irgendeine Weise gespeichert oder niedergelegt sein, wozu auch ein Vorsprechen aus dem Gedächtnis genügt. zur Fussnote [1] Nach Ansicht des BGH genügt es zudem, wenn bei den Klauseln „im Wesentlichen eine Gleichartigkeit“ vorliegt, Klauseln zB auf die konkrete Situation angepasst (also durchaus individuell) sind zur Fussnote [2] (s.a. Rn 42). Das OLG München hat es sogar genügen lassen, dass Klauseln „sinngemäß“ in anderen Fällen verwendet werden. zur Fussnote [3] Die Folgen einer solchen Rechtsprechung wären allerdings verheerend, weil etwa Gewährleistungs- oder Haftungsklauseln naturgemäß immer etwas „Sinngemäßes“ aus anderen Verträgen beinhalten und auch zwischen Verwendern nicht sehr unterschiedlich formuliert werden (können), wenn man in rechtssicherer Weise ein bestimmtes Ziel umsetzen will. Diese Forderungen gehen an den berechtigten Bedürfnissen der Praxis vorbei. Randnummer 11 Das Merkmal „für eine Vielzahl von Verträgen“ erfordert, dass die Absicht der Mehrfachverwendung im Zeitpunkt des Vertragsabschlusses zur Fussnote [4] besteht. Mehrfach bedeutet: mindestens dreifach. zur Fussnote [5] Die Verwendung gegenüber mehreren Bietern/Interessenten zum Abschluss nur eines Vertrags ist aber keine Mehrfachverwendung. zur Fussnote [6] Umgekehrt genügt es, wenn die Mehrfachverwendung sogar gegenüber demselben Partner (aber für verschiedene Verträge) erfolgt bzw erfolgen soll. zur Fussnote [7] Hiervon abzugrenzen sind interne Muster (s. Rn 12) und Arbeitsanweisungen, die allenfalls bei tatsächlicher Verwendung (mit Mehrfachverwendungsabsicht) zu AGB werden zur Fussnote [8] (s.a. § 306 a Rn 3 zur Umgehung). Eine Vermutung für die Mehrfachverwendungs-Absicht besteht, wenn die fragliche Klausel vom Verwender tatsächlich mehrfach zur Fussnote [9] verwendet wurde oder der äußeren Form nach auf diese Absicht schließen lässt (s. Rn 42). Die Mehrfachverwendung muss zudem in einem überschaubaren Zeitraum erfolgen, wobei sieben Jahre Abstand zu lang sind. zur Fussnote [10] (Die tatsächliche Mehrfachverwendung ist umgekehrt aber keine Voraussetzung für das Vorliegen von AGB.) Die Absicht zur Mehrfachverwendung kann auch aus sonstigen Umständen geschlossen werden, zB der Planmäßigkeit im Vorgehen des Verwenders. zur Fussnote [11] Es ist auch nicht erforderlich, dass der Verwender die Klausel vorformuliert hat. So genügt es bei (externen) Mustern und häufiger verwendeten Klauseln, wenn der aufstellende Dritte die Mehrfachverwendungs-Absicht hatte. zur Fussnote [12] Beispiel: Verbands-Muster bzw Verbands-AGB. zur Fussnote [13] Zur VOB/B: s. Rn 133 ff. Die Regelungen eines mehrfach verwendeten Verhandlungsprotokolls stellen oft AGB dar; wird darin formularmäßig auf ein anderes Dokument (zB den „Kundenvertrag“) verwiesen, so sind die Regelungen dieser anderen Unterlage (zB des Kundenvertrages) aber nicht allein deshalb AGB (sondern nur, wenn der Verwender seinerseits mehrfach auf diese Regelungen verweist – zB gegenüber mehreren Subunternehmern). zur Fussnote [14] Zur Umgehung durch interne Bankanweisung: § 306 a Rn 3.
LTWS-Komm-2-0
2021-02-21T06:24:02.000Z
Match a slovak date following the "dd. mmmm yyy" format.
(?P<LongDate>(?P<Day>\d+)\.?[\s  ]+(?P<Month>januára|januáru|februára|februáru|marec|marca|apríla|aprílu|májom|mája|máju|máj|júnu|júna|júlu|júla|augusta|augustu|septembra|septembru|októbra|októbru|novembra|novembru|decembra|decembru)[\s  ]+(?P<Year>\d{4}))
z 11. júla 2006, z 19. septembra 1985,
Long slovak date with the "dd. mmmm yyy" format
2015-05-18T19:32:17.000Z
(dont.*)$
T2 de 42 m² au premier étage d'une belle résidence, cuisine aménagée ouverte sur salon, une chambre avec rangement. Cave et garage. Locataire en cours de bail, 450 euros + 30 euros. Résidence de 60 lots/ absence de procédure/ 806 euros an. dont 6.54 % honoraires TTC à la charge de l'acquéreur. Copropriété de 60 lots Charges annuelles : 806 euros. Prix de vente : 112 350 € dont 6.54% honoraires TTC à la charge de l'acquéreur.
end
2016-01-25T08:28:14.000Z
loud
(\w|)*[A-z]
/about-the-site
match titles in url
2020-04-24T15:23:59.000Z
Finds the components of an equality expression, expecting =,<=,<,>,>=,!= followed by an optionally signed number where the number can be an integer or a decimal (not considered a match if multiple decimals are found)
^(?<Symbol>[=<>!]{0,2})(?<Number>[\-+]?\d+[\.]\d+|[\-+]?\d+)$
=10.1 <=-10.2.5 <-10 >+10 >=10 !=10 10 =X 10.1 -10.2.5 -10 +10 -10.6 10
Equality Expression Supporting Signed Numbers and Decimal
2019-10-04T13:24:51.000Z
.*?agreement[\w\W]*?(as of|by and between|among)[\w\W]*?(as of|by and between|among).*
CREDIT AGREEMENT (this “Agreement”) dated as of August 1, 2012, among HAEMONETICS CORPORATION, a Massachusetts corporation (the “Company”), the LENDERS from time to time party hereto, and JPMORGAN CHASE BANK, N.A., as Administrative Agent. THIS LOCK UP AGREEMENT (the “ Agreement”) is entered into as of this 19th day of December, 2014 (the “ Effective Date”) by and between _______________________ (the “ Stockholder”) and Social Reality, Inc., a Delaware corporation (the “ Company”). This Fifth Amendment to the Credit Card Program Agreement (“Fifth Amendment”) is made and entered into as of August 31, 2010 (“Effective Date”) by and between HSBC Bank Nevada, National Association (“HSBC” or “Bank”), and The Bon-Ton Stores, Inc. (“Bon-Ton”) and amends that certain Credit Card Program Agreement dated as of June 20, 2005, as previously amended (“Agreement”). This Executive Employment Agreement (“ Agreement”) is entered into as of January 23, 2017 (the “ Effective Date”), by and between Lilis Energy, Inc. (the “ Company”) and Joseph C. Daches (“ Executive”). Executive and the Company are each referred to individually as a “ Party” and collectively as the “ Parties.” STOCK PURCHASE AGREEMENT by and between EVESTMENT ALLIANCE HOLDINGS, LLC, FUNDSPIRE, INC. and THE STOCKHOLDERS OF FUNDSPIRE, INC. Dated as of October 31, 2012
Detection of parties
2018-05-15T11:02:28.000Z
9\/(\w{2,3}){3}\(N\)\d{5,}
MM NRC
2019-09-05T03:08:30.000Z
reto burger > burger reto
(.+?)\s(.+?)\s(.+)
Reto P. Burger
Vorname / Name vertauschen
2018-09-26T13:41:27.000Z
EBS/FSW/VehISp/VehISp_generic/TCY/Src/tcy_main.c
^(.*)?(?:$|(.+?)(?:(\.[^.]*$)|$))
EBS/FSW/VehISp/VehISp_generic/TCY/Src/tcy_main.c
pATH vALIDATION
2016-08-24T05:16:14.000Z
Inline Report Filter Conditions Extraction
table\.advFilter=\[(\[.+\])\]
"#report/content-pages/a526620w98080294p102751793/?explorer-table.advFilter=[[0,"analytics.pagePath","RE","\\?|&|#",0],[0,"analytics.pagePath","PT","search",1],[1,"analytics.pageviews","EQ","2",0]]&explorer-table.plotKeys=[]&explorer-table.rowCount=50/"
Google Analytics UI URLs Extraction
2016-07-27T23:51:36.000Z
(\s*-en)$|(\s*-en-us)$|(\s*-us)$
Alternatvie Country Code Capture
2015-01-21T13:56:12.000Z
<\s*?script\s*?([^>]*)\s*?>\s*?(.+)?\s*?<\s*?\/script\s*?>
< script type="text/javascript" src="//vk.com/js/api/openapi.js?65"> < /script > <script type="text/javascript" > VK.init({apiId: 3251711, onlyWidgets: true}); </script> <script type="text/javascript" src="http://keddr.com/wp-content/themes/keddr3-1/js/lite-youtube.js" ></script> <script type="text/javascript" src="http://keddr.com/wp-content/themes/keddr3-1/js/jquery.complexify.js" > sfdbb </script> <script type="text/javascript" > $(function () { if (($("#pass1").length 0)) { $("#pass1").complexify({}, function (valid, complexity) { if (complexity < 1) { $('#progress').css({'width': complexity + '%'}).removeClass('progressbarValidGood').addClass('progressbarInvalid'); $('.passAlert').hide(); } else if (complexity > 1 && complexity < 40) { $('#progress').css({'width': complexity + '%'}).removeClass('progressbarValidGood').addClass('progressbarInvalid'); $('.passAlert.good').hide(); $('.passAlert.bad').fadeIn(); } else if (complexity > 40) { $('#progress').css({'width': complexity + '%'}).removeClass('progressbarValidGood').addClass('progressbarValid'); $('.passAlert.good').hide(); $('.passAlert.strong').fadeIn(); } $('#complexity').html(Math.round(complexity) + '%'); }); } }); </script >
HTML <script> regex
2015-07-24T13:56:22.000Z
<span .+?(?=>)>
<span style="color: #0000ff">public</span> <span style="color: #0000ff">class</span>
Match everything between brackets, including brackets
2015-11-09T00:52:54.000Z
^(9665|\+9665|009665|05)[0-9]{8}$
.Net
2016-04-21T05:54:42.000Z
Extracts package names from a list of name-version strings
^(lib32-[a-zA-Z0-9\.\-]*?)\-[0-9\.]*\-[0-9\.]$
lib32-bluez-libs-5.41-1 lib32-dbus-glib-0.106-1 lib32-gconf-3.2.6-1 lib32-jansson-2.7-2 lib32-kmod-22-1 lib32-libdaemon-0.14-4 lib32-libical-2.0.0-3 lib32-libmbim-1.12.4-1 lib32-libmm-glib-1.4.14-2 lib32-libndp-1.6-1 lib32-libnm-glib-1.2.2-1 lib32-libqmi-1.12.10-1 lib32-libteam-1.23-1 lib32-libudev0-182-2
Arch Pacman Name Extractor
2016-07-22T00:20:58.000Z
(\$\w*)\s+=\*\s+(\w*)
(HEADER = 200 && $result =* Praha) || (HEADER = 201 && $result =* Kladno)
Search "contains" PHP conditions and replace
2016-09-19T14:28:24.000Z
.*thank(\-|\_|)you.*
/thank-you/ /free-estimate/?thank_you=true /estimate-request/?thank_you=true /free-estimate/offer1/thank-you.html /free-estimate/offer2/thank-you.html
SafeStep Thank You
2016-01-11T22:42:48.000Z
Multiline regex for case when combinator is provided.
^#start of line (?![^\n!]*!{2,}) (?=[^_\n]*_[^_]*) #if _ exists, then: ([^_:]+) #mandatory group 1 ((?=:[^:\n]):[^:_(\n]+|) #optional group 2 (_(?!_)) #group 3 mandatory ([^_\-(\n]+) # group 4 mandatory \( #mandatory ( ([^()\n]+) # group 5 mandatory \) #mandatory ) ((?=!)!|) # group 6 optional ((?=:[^!:@\n]):[^!:@\n]+|) # group 7 optional ((?=::[^!:@\n])::[^!:@\n]+|) #group 8 optional ((?=@[^!:@\n])@[^!:@\n]+|) #group 9 optional $ #end of line
# OK - Matches all components if all are provided contextClassName:pc_ruleName(param_One paramTwo)!:pc::pe@media # OK - Return group 2 blank when no : exists before _ which is group 3 contextClassName_ruleName(param_One paramTwo)!:pc::pe@media # OK - When ! is not provided return group 6 blank contextClassName_ruleName(param_One paramTwo):pc::pe@media # NOTOK - More than one consecutive ! contextClassName_ruleName(param_One paramTwo)!!:pc::pe@media # NOTOK - 3 More than two : at instruction tail contextClassName_ruleName(param_One paramTwo):::pe@media # OK - 2 At instruction tail :: is resolved to group 8 contextClassName_ruleName(param_One paramTwo)::pe@media # OK - 1 At instruction tail : is resolved to group 7 contextClassName_ruleName(param_One paramTwo):pe@media # OK - At instruction start : followed by chars contextClassName:pc_ruleName(param_One paramTwo):pe@media # NOTOK - At instruction start : not followed by chars contextClassName:_ruleName(param_One paramTwo):pe@media # NOTOK - At instruction start :: followed by chars contextClassName::pc_ruleName(param_One paramTwo):pe@media # OK - Whole instruction tail is optional contextClassName:pc_ruleName(param_One paramTwo) # OK - Parameter value can contain anything contextClassName:pc_ruleName(param_One param#$^Two)
Match ACSS components [main test].
2018-03-25T10:35:52.000Z
\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}\b
e-mail address
2018-05-24T20:39:47.000Z
Will match a value string for a CPE Well Formed Name
^(?:[*?_A-Za-z0-9]|\\[\\!"#$%&'()+,.\/:;<>=@[\]^`{|}~*?-])(?:[A-Za-z0-9_]|\\[\\!"#$%&'()+,.\/:;<>=@[\]^`{|}~*?-])*(?:\*|\?+)?
foo\-bar Acrobat_Reader \"oh_my\!\" g\+\+ 9\.? sr* big\$money foo\:bar back\\slash_software with_quoted_\~tilde *SOFT* 8\.?? *8\.?? ?hello? \\help1?? hello?hello
CPE WFN value string
2017-09-19T17:33:25.000Z
fwefwe
(\d+)\s+(\w{2})\s*(\w{2,5})\s+(\w{5})\s+(\w{3})(\w{3})\s+(\w{4,5})\s+(\w{4,5})\s+(\w{5})\s*((?:.|\n)*(\n\s*\n)?(?=\d+\s+\w{2}\s*\w{2,5}\s+\w{5}\s+\w{3}\w{3}\s+\w{4,5}\s+\w{4,5}\s+\w{5}|$))
1 UA 990J 28OCT SFOCDG 340P 1015A 29OCT 2 AF1830J 31OCT CDGMXP 900A 1025A 31OCT OPERATED BY AIR CANADA YYZ CHECK-IN WITH AIR CANADA 3 LH 259J 03NOV MXPFRA 740A 900A 03NOV OPERATED BY LUFTHANSA MAD CHECK-IN WITH LUFTHANSA 4 LH 454J 03NOV FRASFO 1005A 205P 03NOV 5 LH 454J 03NOV SFOKIV 205P 235P 03NOV
Appolo
2018-11-27T11:05:02.000Z
ragex solution for free code camp positive-and-negative-lookahead first assertion is (?=\w{6,}) where im matching for any char (a-z0-9_) and repeating the char matching 6 times, in other words, verifying that this word has 6 char being them a-z or digits. the second assertion was more difficult to me, at first I was trying to do something like (?=\d{2}) and it was failing because when it tried to match, it was ignoring the previous chars that the word may have. So in the second assertion, I did (?=\w*\d{2}) at first validating the word may have chars at the beginning but it has to have two consecutive digits. When I got the two pieces together, in the first i match words that are 6 digits or more long and words that has two consecutive digits.
(?=\w{6,})(?=\w*\d{2})
bana12 abc123 8pass99 astr1on11aut banan1 astronaut 12345 1a2bcde
find a 6 lenght word with 2 consecutive digits
2023-07-13T14:51:38.000Z
(?<!^([0-9]+([èe]?r)?e )?)Avenue
Avenue du Domaine-Patry (fr) 1ère Avenue du Domaine-Patry (fr) 1re Avenue du Domaine-Patry (fr) 1e Avenue du Domaine-Patry (fr) 1st Avenue du Domaine-Patry (en) 101th Avenue du Domaine-Patry (en) Domaine-Patry Avenue (en)
French avenue check
2019-11-14T13:40:17.000Z
Matches publicly available IPv4 addresses (excludes 10., 172.16-32, and 192.168 blocks).
(\d+)(?<!10)(?<!127)\.(\d+)(?<!192\.168)(?<!172\.(1[6-9]|2[0-9]|3[0-1]))\.(\d+)\.(\d+)
No match 172.16.1.1 172.16.0.0 172.16.0.0 172.31.0.1 172.20.22.22 10.255.255.255 192.168.1.1 192.168.12.34 192.168.111.222 127.255.255.255 127.0.4.4 127.0.0.1 127.255.255.255 127.123.123.123 127.1.1.1 127.12.23.56 Match 172.15.2.2 172.33.33.33 192.167.1.1 192.169.1.1 207.168.207.11 207.168.207.22 192.2.199.199
IPv4 addresses that don't match RFC1918
2016-05-26T17:57:24.000Z
Extract the title from a movie file
^(?!\d\d?[ex]\d\d?)(?:\[(?:[-\w\s]+)*\] )?(.*?)[-_. ]?(?:[\{\(\[]?(?:dvdrip|[-._\b]ita|[-._\b]eng|xvid| cd\d|dvdscr|\w{1,5}rip|divx|\d+p|\d{4}).*?)?\.([\w]{2,3})$
22. Non Puoi Sempre Dire Quello Kent Ti Pare.avi 6x13 - Una festa spettacolare.mkv After earth.avi Capitan America Il Primo Vendicatore 480p.mkv Dylan Dog 2010 Ac3.avi FUMETTOLOGY - 11 - PUNTATA SPECIALE.by.IperB.mkv Guida galattica per autostoppisti [BDrip 720p ITA-ENG sub ITA-ENG].mkv Hook - Capitan Uncino (1991).avi Kick Ass 2.avi Lemony Snicket - Una serie di sfortunati eventi 2004.avi Monty Python e il Sacro Graal.avi Pacific_Rim_2004_BdRip_1080p_ITA_ENG_ANONIMO_CREW.mkv Pompeii.2014.iTALiAN.DTS.Dual.1080p.BluRay.x264-TRtD_TeaM.mkv Ralph Spaccatutto.avi Red Hot Chili Simpson.avi RobinHood-UnUomoInCalzamaglia.ENG.srt The.Lego.Movie.2014.iTALiAN.AC3.DUAL.1080p.BluRay.x264-TrTd_TeaM.mkv The.Pagemaster.1994.1080p.BluRyMux.by.gemini9669.mkv Tom.&.Jerry.Avventure.Giganti.Giant.Adventure.2013.DVDRip.ITA.AC3.ENG.Mp3-MLN.avi Tron 480p.mkv Viaggi Spazio - Temporali.avi Vite Aliene.avi [DivX - ITA] The Simpson - Natale con i Simpsons 2003.avi [SUB ITA] Monty Python e il Sacro Graal.srt [Sub ENG] Monty Python e il Sacro Graal.srt codeschool_1322.mp4 corto.avi film xvid.ENG.srt [rec].mp4 recita.mp4 regeng.flv
Movies title extractor
2014-10-13T22:00:37.000Z
^(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?
url validator
2015-11-30T13:09:53.000Z
[\x00-\x7F]+@[\x00-\x7F]+\.(com|in|org)
email matcher
2015-07-09T12:56:10.000Z
String begins with 3 digits + whitespace character + any length of characters + white space + 3 digits
\d{3}\s.*?\s\d{3}
324 sdfsdf 432
Starts and Ends with 3 digits
2016-08-22T13:14:19.000Z
^(?!.*\.\.|\..*|^_vti_|.*\.$)([A-Za-z0-9\-\t _,.!'@^=+()<>`])+$
FIle Name Compliant
2018-03-26T07:31:23.000Z
pega todos os comentarios do Delphi
\{[^\}]+\}
sdfgsdfgsdfg sdfg dsfg sdfg sdfg dsfg dsfg sd sdfgsdfgsdfg "!@#$%¨&*()_+ ´~'"°ºª ´~.,;<>:/*-+.,¹²³£¢¬§" !@#$%¨&*()_+ '1234567890- ssdfg { JoaoFabioMA Hugo sdfgsdfgsdfg "!@#$%¨&*()_+ ´~'"°ºª ´~.,;<>:/*-+.,¹²³£¢¬§" !@#$%¨&*()_+ '1234567890- ssdfg } sdfgdsf "!@#$%¨&*()_+ dsfgdfg { /* JoaoFabioMA sdfgsdfgsdfg "!@#$%¨&*()_+ ´~'"°ºª ´~.,;<>:/*-+.,¹²³£¢¬§" !@#$%¨&*()_+ '1234567890- ssdfg Hugo */ }
Busca Comentario
2016-01-06T17:10:54.000Z
^\*\*\* NEW GIVEAWAY OPENED: \((.+?)\): Sponsored by ([a-zA-Z0-9_]{4,25})! \((\d+) Tokens - REGULAR Giveaway\) This is a promotion from CohhCarnage. Twitch does not sponsor or endorse broadcaster promotions and is not responsible for them. \*\*\*$
*** NEW GIVEAWAY OPENED: (WWE 2k16): Sponsored by Tazmanianstitch! (1 Tokens - REGULAR Giveaway) This is a promotion from CohhCarnage. Twitch does not sponsor or endorse broadcaster promotions and is not responsible for them. *** "*** NEW GIVEAWAY OPENED: (Magma Tsunami): Sponsored by StefAZenon! (100 Tokens - REGULAR Giveaway) This is a promotion from CohhCarnage. Twitch does not sponsor or endorse broadcaster promotions and is not responsible for them. ***"
CohhCarnage giveaway started
2016-09-20T20:53:05.000Z
href="([^"]+)"
<!DOCTYPE html> <html lang="fr"> <head></head> <body> <div id="wm-ipp" class="" lang="en" style="display: block;"></div> <!-- BEGIN WAYBACK TOOLBAR INSERT --> <script src="/static/js/disclaim-element.js" type="text/javascript"></script> <script src="/static/js/graph-calc.js" type="text/javascript"></script> <script src="/static/jflot/jquery.min.js" type="text/javascript"></script> <script type="text/javascript"></script> <style type="text/css"></style> <script type="text/javascript"></script> <!-- END WAYBACK TOOLBAR INSERT --> <header id="main_header"> <div class="header_content"></div> </header> <div id="main_content"> <div id="under_top_event"></div> <div id="breadcrumbs"></div> <div id="main_search"></div> <div id="content"> <div id="page_test" class="home"> <div id="topline"> <h1> TESTS </h1> </div> <div class="large_column left_column"> <a class="top" title="Lire le test : The Final Fantasy" href="/web/20121023121603/http://www.gameweb.fr/articles/test-65-the-final-fantasy-3ds-page-opinion.html"></a> <div class="separation" style="margin: 20px 0;"></div> <a class="high" title="Lire le test : El Shaddai : Ascension of The Metatron" href="/web/20121023121603/http://www.gameweb.fr/articles/test-63-el-shaddai-ascension-of-the-metatron-ps3-page-opinion.html"></a> <a class="high" title="Lire le test : Heroes of Ruin" href="/web/20121023121603/http://www.gameweb.fr/articles/test-62-heroes-of-ruin-3ds-page-opinion.html"></a> <a class="high" title="Lire le test : Prototype 2" href="/web/20121023121603/http://www.gameweb.fr/articles/test-61-prototype-2-ps3-page-opinion.html"></a> <a class="high" title="Lire le test : Rayman Origins" href="/web/20121023121603/http://www.gameweb.fr/articles/test-60-rayman-origins-ps3-page-opinion.html"></a> </div> <div class="medium_column right_column" style="padding-top: 70px;"> <a class="medium" title="Lire le test : Mass Effect 3" href="/web/20121023121603/http://www.gameweb.fr/articles/test-59-mass-effect-3-x360-page-opinion.html"> <span class="small title"></span> <span class="put_score score"></span> <span class="description"></span> </a> <div class="separation" style="margin: 10px 0;"></div> <a class="medium" title="Lire le test : Pandora's Tower" href="/web/20121023121603/http://www.gameweb.fr/articles/test-58-pandoras-tower-wii-page-opinion.html"> <span class="small title"></span> <span class="put_score score"></span> <span class="description"></span> </a> <div class="separation" style="margin: 10px 0;"></div> <a class="medium" title="Lire le test : I am alive" href="/web/20121023121603/http://www.gameweb.fr/articles/test-57-i-am-alive-x360-page-opinion.html"></a> <div class="separation" style="margin: 10px 0;"></div> <a class="medium" title="Lire le test : Silent hill downpour" href="/web/20121023121603/http://www.gameweb.fr/articles/test-56-silent-hill-downpour-ps3-page-opinion.html"></a> <div class="separation" style="margin: 10px 0;"></div> <a class="medium" title="Lire le test : Naruto Storm Generations" href="/web/20121023121603/http://www.gameweb.fr/articles/test-55-naruto-storm-generations-x360-page-opinion.html"></a> <div class="separation" style="margin: 10px 0;"></div> <a class="medium" title="Lire le test : Street Fighter x Tekken" href="/web/20121023121603/http://www.gameweb.fr/articles/test-54-street-fighter-x-tekken-ps3-page-opinion.html"></a> <div class="separation" style="margin: 10px 0;"></div> <a class="medium" title="Lire le test : Ninja Gaiden 3" href="/web/20121023121603/http://www.gameweb.fr/articles/test-53-ninja-gaiden-3-ps3-page-opinion.html"></a> <div class="separation" style="margin: 10px 0;"></div> <a class="medium" title="Lire le test : Asura's Wrath" href="/web/20121023121603/http://www.gameweb.fr/articles/test-52-asuras-wrath-ps3-page-opinion.html"></a> <div class="separation" style="margin: 10px 0;"></div> <a class="medium" title="Lire le test : The Last Story" href="/web/20121023121603/http://www.gameweb.fr/articles/test-51-the-last-story-wii-page-opinion.html"></a> <div class="separation" style="margin: 10px 0;"></div> <a class="medium" title="Lire le test : Xenoblade" href="/web/20121023121603/http://www.gameweb.fr/articles/test-50-xenoblade-wii-page-opinion.html"></a> <div class="separation" style="margin: 10px 0;"></div> <a class="medium" title="Lire le test : SSX" href="/web/20121023121603/http://www.gameweb.fr/articles/test-48-ssx-ps3-page-opinion.html"></a> <div class="separation" style="margin: 10px 0;"></div> <a class="medium" title="Lire le test : Syndicate" href="/web/20121023121603/http://www.gameweb.fr/articles/test-47-syndicate-pc-page-opinion.html"></a> <div class="separation" style="margin: 10px 0;"></div> <a class="medium" title="Lire le test : Resident Evil Revelations" href="/web/20121023121603/http://www.gameweb.fr/articles/test-46-resident-evil-revelations-3ds-page-opinion.html"></a> <div class="separation" style="margin: 10px 0;"></div> <a class="medium" title="Lire le test : Binary Domain" href="/web/20121023121603/http://www.gameweb.fr/articles/test-45-binary-domain-ps3-page-opinion.html"></a> <div class="separation" style="margin: 10px 0;"></div> <a class="medium" title="Lire le test : Catherine" href="/web/20121023121603/http://www.gameweb.fr/articles/test-43-catherine-x360-page-opinion.html"></a> <div class="separation" style="margin: 10px 0;"></div> <a class="medium" title="Lire le test : Soulcalibur V" href="/web/20121023121603/http://www.gameweb.fr/articles/test-44-soulcalibur-v-ps3-page-opinion.html"></a> <div class="separation" style="margin: 10px 0;"></div> </div> </div> </div> </div> <footer id="main_footer"></footer> </body> </html> <!-- FILE ARCHIVED ON 12:16:03 oct. 23, 2012 AND … -->
extract url from text
2015-07-19T14:59:11.000Z
^(...)\s.*(\-[A-Z]{4}\s.{11}).*\s+(.{31})
NY1 00000000847727342FHKSF-EAIO B! 00000002N$@FA! !000000000000000000000000650GHK
Group Capture
2017-05-24T03:34:22.000Z
Return all get checkbox parameters. String: tx_example%5Bfilter%5D%5BfilterIndustry%5D%5B0%5D=2 &tx_example%5Bfilter%5D%5BfilterIndustry%5D%5B1%5D=6&cHash=0bc48e5ae84ndb2705e9297feecd3a84 Will find: tx_example%5Bfilter%5D%5BfilterIndustry%5D%5B0%5D=2 and split this to Total: tx_example%5Bfilter%5D%5BfilterIndustry%5D%5B0%5D=2 1: ? or & 2: tx_example%5Bfilter%5D%5BfilterIndustry%5D%5B0%5D= 3: 2
(\?|\&)([tx_dwtalentsconnectimporter_joblist%5Bfilter%5D%5BfilterIndustry%5D%5B\[0-9\]%5D=]+)\=([^&]+)
?tx_dwtalentsconnectimporter_joblist%5Bfilter%5D%5BfilterIndustry%5D%5B0%5D=2&tx_dwtalentsconnectimporter_joblist%5Bfilter%5D%5BfilterIndustry%5D%5B1%5D=6&tx_dwtalentsconnectimporter_joblist%5Bfilter%5D%5BfilterIndustry%5D%5B1%5D=2&cHash=0bc48e5ae84bdb2805e9297feecd3a84&tx_dwtalentsconnectimporter_joblist%5Bfilter%5D%5BfilterIndustry%5D%5B1334%5D=244
Get MultipleCheckbox parameter
2017-09-06T10:22:10.000Z
Finds greys by checking if R, G, B values are equal
^([0-9]{1,3}), ?\1, ?\1$
21,21,21 155,155,155 0, 0, 0 121,191,121 aaa,bbb,ccc 1,97,2,0
Detect RGB greys
2018-04-23T13:26:56.000Z
It will match if it's present only the exact word in a phrase, without any other words in the same sentence
^dog$
only exact word in a phrase dog 123 dog super dog
Exact match of a word in a phrase: the phrase must be composed by a single word
2022-11-09T11:11:40.000Z
italian uppercase surnames
(?m)\b[A-ZÀ-Ü][A-ZÀ-Ü ’']{2,}(?= |$)
DEL ?PRATO DEL !PRATO DEL PRATO! DEL PRATO1 +DEL PRATO! DEL? P!RATO DEL? PRaTO DEL aPRATO DEL PRATOb MARIO’APICELLA MARIO’ APICELLA MARIO ’ APICELLA MARIO ’ ' APICELLA ÒÌFÚ''' CIAOÙÜÒÌ'", abcÒÌFÚ' ÒÌFÚ' abcCIAOÙÜÒÌ' abcÒÌFÚ' CIAOÙÜÒÌ ÒÌFÚ'abc' CIAOÙÜÒÌ’ ÒÌFÚ' CIAOÙÜÒÌabc' ÒÌFÚ' CIAOÙÜÒÌabc' ÒÌFÚ' CIAOÙÜÒÌabc'
surnames
2022-09-07T16:28:14.000Z
(?:Product (\d{6})(\d{8}) (.{12}) (.+)\s?\*BCA)+
Account balance PLM051 05May2016 10:54 Actions Submenu View authorisation balance details View available balance detailsExit Product 40256731631234 BUSINESS A/C Zapp Innovat*BCA Balances as at 05May2016 10:54 except where indicated Balance 907.50Cr Statement balance 1,059.50Cr (04May2016) Cleared balance 907.50Cr Interest balance 1,059.50Cr (04May2016) Available balance 793.56Cr Authorisation balance 793.56Cr Other details Account balance PLM051 05May2016 10:54 Actions Submenu View authorisation balance details View available balance detailsExit Product 40256731631234 BUSINESS A/C Zapp Innovat*BCA Balances as at 05May2016 10:54 except where indicated Balance 907.50Cr Statement balance 1,059.50Cr (04May2016) Cleared balance 907.50Cr Interest balance 1,059.50Cr (04May2016) Available balance 793.56Cr Authorisation balance 793.56Cr Other details
KLC051 Regex
2016-06-03T09:10:29.000Z
^(?=.{8,})(?=.*[A-Z]{1,})(?=.*[a-z]{1,})(?=.*[!"#%&()*+,.:/;<=>?@[_`{|}~\]\'\$\-\^\\]{1,})(?=.*[0-9]{1,})
Pas$w0rd
password validation
2016-02-21T16:57:41.000Z
Erkennt alle deutschen Postleitzahlen inkl. der Ortsbezeichnung in Listen. Wenn man das Trennzeichen "\ " durch "(?:\ |\t)" ersetzt, werden auch Tabulator-getrennte Listen erkannt.
(?<!\d)(\w+[\-\ ])?(\d{4,5})\ ([[:alpha:]ÄÖÜäöüß\-\/\ \.]+(?:\([[:alpha:]\/\ \.]+\))?)(?<!\ )
01067 Dresden 01069 Dresden 01097 Dresden 01099 Dresden 01108 Dresden 01109 Dresden 01127 Dresden 01129 Dresden 01139 Dresden 01156 Dresden 01157 Dresden 01159 Dresden 01169 Dresden 01187 Dresden 01189 Dresden 01217 Dresden 01219 Dresden 01237 Dresden 01239 Dresden 01257 Dresden 01259 Dresden 01277 Dresden 01279 Dresden 01307 Dresden 01309 Dresden 01324 Dresden 01326 Dresden 01328 Dresden 01445 Radebeul 01454 Radeberg 01454 Wachau 01458 Ottendorf-Okrilla 01462 Dresden 01465 Dresden 01465 Langebrück 01468 Moritzburg 01471 Radeburg 01477 Arnsdorf 01478 Dresden 01558 Großenhain 01561 Schönfeld 01561 Lampertswalde 01561 Tauscha 01561 Priestewitz 01561 Ebersbach 01561 Weißig am Raschütz 01561 Wildenhain 01561 Thiendorf 01561 Zabeltitz 01587 Riesa 01589 Riesa 01591 Riesa 01594 Hirschstein 01594 Stauchitz 01609 Gröditz 01609 Nauwalde 01609 Wülknitz 01612 Glaubitz 01612 Diesbar-Seußlitz 01612 Nünchritz 01616 Strehla 01619 Röderaue 01619 Zeithain 01623 Lommatzsch 01623 Leuben-Schleinitz 01623 Ketzerbachtal 01640 Coswig 01662 Meißen 01665 Triebischtal 01665 Taubenheim 01665 Käbschütztal 01665 Diera-Zehren 01665 Klipphausen 01683 Heynitz 01683 Nossen 01689 Weinböhla 01689 Niederau 01705 Freital 01723 Wilsdruff 01728 Bannewitz 01731 Kreischa 01734 Rabenau 01737 Tharandt 01738 Dorfhain 01744 Dippoldiswalde 01762 Schmiedeberg 01762 Hartmannsdorf-Reichenau 01768 Glashütte 01768 Bärenstein 01768 Reinhardtsgrimma 01773 Altenberg 01774 Höckendorf 01774 Pretzschendorf 01776 Hermsdorf/Erzgebirge 01778 Geising 01796 Pirna 01796 Struppen 01796 Dohma 01809 Müglitztal 01809 Dohna 01809 Heidenau 01814 Bad Schandau 01814 Reinhardtsdorf-Schöna 01814 Porschdorf 01814 Rathmannsdorf 01816 Bad Gottleuba-Berggießhübel 01819 Bahretal 01824 Gohrisch 01824 Rosenthal-Bielatal 01824 Rathen 01824 Königstein/Sächsische Schweiz 01825 Liebstadt 01829 Stadt Wehlen 01833 Stolpen 01833 Dürrröhrsdorf-Dittersbach 01844 Hohwald 01844 Neustadt in Sachsen 01847 Lohmen 01848 Hohnstein 01855 Kirnitzschtal 01855 Sebnitz 01877 Rammenau 01877 Demitz-Thumitz 01877 Schmölln-Putzkau 01877 Doberschau-Gaußig 01877 Bischofswerda 01896 Lichtenberg 01896 Pulsnitz 01896 Ohorn 01900 Großröhrsdorf 01900 Bretnig-Hauswalde 01904 Neukirch/Lausitz 01904 Steinigtwolmsdorf 01906 Burkau 01909 Frankenthal 01909 Großharthau 01917 Kamenz 01920 Crostwitz 01920 Panschwitz-Kuckau 01920 Steina 01920 Nebelschütz 01920 Schönteichen 01920 Elstra 01920 Oßling 01920 Räckelwitz 01920 Haselbachtal 01920 Ralbitz-Rosenthal 01936 Schwepnitz 01936 Königsbrück 01936 Laußnitz 01936 Neukirch 01936 Großnaundorf 01936 Straßgräbchen 01936 Oberlichtenau 01936 Haselbachtal 01945 Ruhland 01945 Kroppen 01945 Grünewald 01945 Schwarzbach 01945 Tettau 01945 Hohenbocka 01945 Hermsdorf 01945 Guteborn 01945 Lindenau 01968 Schipkau 01968 Senftenberg 01979 Lauchhammer 01983 Neu-Seeland 01983 Großräschen 01987 Schwarzheide 01990 Ortrand 01990 Großkmehlen 01990 Frauendorf 01993 Schipkau 01994 Schipkau 01998 Schipkau 02625 Bautzen 02627 Radibor 02627 Hochkirch 02627 Kubschütz 02627 Weißenberg 02633 Göda 02633 Doberschau-Gaußig 02681 Kirschau 02681 Wilthen 02681 Crostau 02681 Schirgiswalde 02689 Sohland an der Spree 02692 Obergurig 02692 Doberschau-Gaußig 02692 Großpostwitz/Oberlausitz 02694 Großdubrau 02694 Malschwitz 02694 Guttau 02699 Neschwitz 02699 Puschwitz 02699 Königswartha 02708 Kittlitz 02708 Großschweidnitz 02708 Lawalde 02708 Rosenbach 02708 Obercunnersdorf 02708 Löbau 02708 Schönbach 02708 Niedercunnersdorf 02708 Dürrhennersdorf 02727 Neugersdorf 02730 Ebersbach/Sachsen 02733 Cunewalde 02736 Oppach 02736 Beiersdorf 02739 Eibau 02742 Neusalza-Spremberg 02742 Friedersdorf 02747 Strahwalde 02747 Großhennersdorf 02747 Berthelsdorf 02747 Herrnhut 02748 Bernstadt auf dem Eigen 02763 Zittau 02763 Bertsdorf-Hörnitz 02763 Mittelherwigsdorf 02779 Großschönau 02779 Hainewalde 02782 Seifhennersdorf 02785 Olbersdorf 02788 Schlegel 02788 Hirschfelde 02791 Oderwitz 02794 Leutersdorf 02796 Jonsdorf 02797 Oybin 02799 Waltersdorf 02826 Görlitz 02827 Görlitz 02828 Görlitz 02829 Markersdorf 02829 Königshain 02829 Schöpstal 02829 Neißeaue 02894 Vierkirchen 02894 Reichenbach/Oberlausitz 02894 Sohland am Rotstein 02899 Ostritz 02899 Schönau-Berzdorf auf dem Eigen 02906 Niesky 02906 Mücka 02906 Quitzdorf am See 02906 Waldhufen 02906 Kreba-Neudorf 02906 Klitten 02906 Hohendubrau 02923 Neißeaue 02923 Horka 02923 Kodersdorf 02923 Hähnichen 02929 Rothenburg/Oberlausitz 02943 Boxberg/Oberlausitz 02943 Weißwasser 02953 Gablenz 02953 Bad Muskau 02956 Rietschen 02957 Weißkeißel 02957 Krauschwitz 02959 Schleife 02959 Trebendorf 02959 Groß Düben 02977 Hoyerswerda 02979 Elsterheide 02979 Spreetal 02991 Leippe-Torno 02991 Lauta 02991 Elsterheide 02994 Bernsdorf 02994 Wiednitz 02997 Wittichenau 02999 Knappensee 02999 Uhyst 02999 Lohsa 03042 Cottbus 03044 Cottbus 03046 Cottbus 03048 Cottbus 03050 Cottbus 03051 Cottbus 03052 Cottbus 03053 Cottbus 03054 Cottbus 03055 Cottbus 03058 Frauendorf 03058 Haasow 03058 Koppatz 03058 Kathlow 03058 Groß Gaglow 03058 Groß Döbbern 03058 Komptendorf 03058 Sergen 03058 Kiekebusch 03058 Gablenz 03058 Roggosen 03058 Gallinchen 03058 Groß Oßnig 03058 Laubsdorf 03058 Klein Döbbern 03058 Neuhausen 03096 Schmogrow-Fehrow 03096 Burg (Spreewald) 03096 Werben 03096 Guhrow 03096 Briesen 03096 Dissen-Striesow 03099 Kolkwitz 03103 Neupetershain 03103 Neu-Seeland 03116 Drebkau 03119 Welzow 03130 Bagenz 03130 Graustein 03130 Proschim 03130 Jämlitz-Klein Düben 03130 Groß Luja 03130 Türkendorf 03130 Hornow-Wadelsdorf 03130 Tschernitz 03130 Drieschnitz-Kahsel 03130 Wolfshain 03130 Lieskau 03130 Reuthen 03130 Spremberg 03130 Haidemühl 03130 Felixsee 03149 Groß Schacksdorf-Simmersdorf 03149 Forst (Lausitz) 03149 Wiesengrund 03159 Wiesengrund 03159 Neiße-Malxetal 03159 Döbern 03172 Gastrose-Kerkwitz 03172 Atterwasch 03172 Guben 03172 Grießen 03172 Bärenklau 03172 Lutzketal 03172 Pinnow-Heideland 03172 Grabko 03185 Peitz 03185 Teichland 03185 Turnow-Preilack 03185 Heinersbrück 03185 Tauer 03185 Drachhausen 03185 Drehnow 03185 Grötsch 03197 Jänschwalde 03197 Drewitz 03205 Bronkow 03205 Saßleben 03205 Groß-Mehßow 03205 Bischdorf 03205 Luckaitztal 03205 Missen 03205 Calau 03205 Mlode 03205 Laasow 03205 Bolschwitz 03205 Ogrosen 03205 Kemmen 03205 Lipten 03205 Lug 03205 Werchow 03222 Hindenberg 03222 Kittlitz 03222 Lübbenau/Spreewald 03222 Groß Beuchow 03222 Ragow 03222 Boblitz 03222 Klein Radden 03222 Groß-Klessow 03226 Vetschau 03226 Suschow 03226 Koßwig 03226 Leipe 03226 Raddusch 03229 Altdöbern 03229 Luckaitztal 03238 Staupitz 03238 Sallgast 03238 Schadewitz 03238 Dollenchen 03238 Eichholz-Drößig 03238 Lugau 03238 Gorden 03238 Massen 03238 Rückersdorf 03238 Lindena 03238 Lindthal 03238 Betten 03238 Ponnsdorf 03238 Schacksdorf 03238 Göllnitz 03238 Oppelhain 03238 Finsterwalde 03238 Lieskau 03238 Münchhausen 03238 Lichterfeld 03238 Gruhno 03238 Gröbitz 03238 Fischwasser 03246 Babben 03246 Crinitz 03246 Gahro 03249 Breitenau 03249 Sonnewalde 03249 Goßmar 03249 Bahren 03249 Großkrausnik 03249 Kleinkrausnik 03249 Zeckerin 03249 Pahlsdorf 03253 Schilda 03253 Trebbus 03253 Dübrichen 03253 Schönborn 03253 Schönewalde 03253 Hennersdorf 03253 Arenzhain 03253 Doberlug-Kirchhain 03253 Buchhain 03253 Prießen 03253 Werenzhain 03253 Tröbitz 03253 Nexdorf 03253 Friedersdorf 03253 Brenitz 03253 Frankena 04103 Leipzig 04105 Leipzig 04107 Leipzig 04109 Leipzig 04129 Leipzig 04155 Leipzig 04157 Leipzig 04159 Leipzig 04177 Leipzig 04179 Leipzig 04205 Leipzig 04207 Leipzig 04209 Leipzig 04229 Leipzig 04249 Leipzig 04275 Leipzig 04277 Leipzig 04279 Leipzig 04289 Leipzig 04299 Leipzig 04315 Leipzig 04317 Leipzig 04318 Leipzig 04319 Leipzig 04329 Leipzig 04347 Leipzig 04349 Leipzig 04357 Leipzig 04416 Markkleeberg 04420 Großlehna 04420 Markranstädt 04425 Taucha 04435 Schkeuditz 04442 Zwenkau 04451 Borsdorf 04460 Kitzen 04463 Großpösna 04509 Wiedemar 04509 Delitzsch 04509 Zschortau 04509 Löbnitz 04509 Neukyhna 04509 Döbernitz 04509 Schönwölkau 04509 Krostitz 04509 Zwochau 04519 Rackwitz 04523 Elstertrebnitz 04523 Pegau 04539 Groitzsch 04552 Wyhratal 04552 Borna 04552 Lobstädt 04564 Böhlen 04565 Regis-Breitingen 04567 Kitzscher 04571 Rötha 04574 Heuersdorf 04574 Deutzen 04575 Neukieritzsch 04579 Espenhain 04600 Altenburg 04603 Nobitz 04603 Göhren 04603 Saara 04603 Windischleuba 04610 Meuselwitz 04610 Wintersdorf 04613 Lucka 04617 Starkenberg 04617 Monstab 04617 Rositz 04617 Großröda 04617 Haselbach 04617 Naundorf 04617 Gerstenberg 04617 Treben 04617 Tegkwitz 04617 Fockendorf 04617 Kriebitzsch 04617 Lödla 04618 Ziegelheim 04618 Langenleuba-Niederhain 04618 Göpfersdorf 04618 Jückelberg 04618 Frohnsdorf 04626 Lumpzig 04626 Mehna 04626 Dobitschen 04626 Drogen 04626 Altkirchen 04626 Vollmershain 04626 Wildenbörten 04626 Schmölln 04626 Posterstein 04626 Jonaswalde 04626 Göllnitz 04626 Heukewalde 04626 Thonhausen 04626 Löbichau 04626 Nöbdenitz 04639 Gößnitz 04643 Geithain 04651 Eulatal 04651 Bad Lausick 04654 Frohburg 04655 Kohren-Sahlis 04657 Narsdorf 04668 Grimma 04668 Großbardau 04668 Großbothen 04668 Parthenstein 04668 Thümmlitzwalde 04668 Otterwisch 04680 Colditz 04680 Zschadraß 04683 Belgershain 04683 Naunhof 04685 Nerchau 04687 Trebsen/Mulde 04688 Mutzschen 04703 Leisnig 04703 Gersdorf 04703 Bockelwitz 04720 Döbeln 04720 Mochau 04720 Ebersbach 04720 Großweitzschen 04720 Ziegra-Knobelsdorf 04720 Zschaitz-Ottewig 04736 Waldheim 04741 Niederstriegis 04741 Roßwein 04746 Hartha 04749 Ostrau 04758 Oschatz 04758 Liebschützberg 04758 Cavertitz 04769 Sornzig-Ablaß 04769 Naundorf 04769 Mügeln 04774 Dahlen 04779 Wermsdorf 04808 Hohburg 04808 Wurzen 04808 Falkenhain 04808 Kühren-Burkartshain 04808 Thallwitz 04821 Brandis 04827 Machern 04828 Bennewitz 04838 Eilenburg 04838 Laußig 04838 Jesewitz 04838 Zschepplin 04838 Mockrehna 04838 Doberschütz 04849 Kossa 04849 Bad Düben 04860 Pflückuff 04860 Torgau 04860 Dreiheide 04860 Zinna 04874 Belgern 04880 Dommitzsch 04880 Trossin 04880 Elsnig 04886 Arzberg 04886 Großtreben-Zwethau 04886 Beilrode 04889 Schildau 04895 Falkenberg/Elster 04910 Elsterwerda 04910 Haida 04916 Stolzenhain 04916 Themesgrund 04916 Heideeck 04916 Herzberg (Elster) 04916 Wildberg 04916 Werchau 04924 Uebigau-Wahrenbrück 04924 Bad Liebenwerda 04928 Döllingen 04928 Kahla 04928 Schraden 04928 Plessa 04931 Mühlberg (Elbe) 04932 Wainsdorf 04932 Großthiemig 04932 Prösen 04932 Gröden 04932 Saathain 04932 Hirschfeld 04932 Reichenhain 04932 Merzdorf 04934 Dreska 04934 Hohenleipisch 04936 Schlieben 04936 Ölsig 04936 Schöna-Kolpien 04936 Hohenbucko 04936 Jagsal 04936 Stechau 04936 Körba 04936 Naundorf 04936 Kolochau 04936 Malitschkendorf 04936 Wehrhain 04936 Frankenhain 04936 Proßmarke 04936 Hillmersdorf 04936 Freileben 04936 Lebusa 04938 Uebigau-Wahrenbrück 06108 Halle 06110 Halle 06112 Halle 06114 Halle 06116 Halle 06118 Halle 06120 Halle 06120 Lieskau 06122 Halle 06124 Halle 06126 Halle 06128 Halle 06130 Halle 06132 Halle 06179 Teutschenthal 06179 Steuden 06179 Schochwitz 06179 Schkopau 06179 Langenbogen 06179 Holleben 06179 Hohenweiden 06179 Höhnstedt 06179 Zscherben 06179 Zappendorf 06179 Dornstedt 06179 Angersdorf 06179 Bennstedt 06184 Schkopau 06184 Röglitz 06184 Großkugel 06184 Gröbers 06184 Ermlitz 06184 Döllnitz 06184 Dölbau 06184 Dieskau 06184 Burgliebenau 06184 Lochau 06184 Raßnitz 06188 Spickendorf 06188 Sietzsch 06188 Schwerz 06188 Reußen 06188 Landsberg 06188 Hohenthurm 06188 Braschwitz 06188 Brachstedt 06188 Queis 06188 Peißen 06188 Oppin 06188 Niemberg 06193 Wallwitz 06193 Teicha 06193 Sennewitz 06193 Kütten 06193 Krosigk 06193 Gutenberg 06193 Plötz 06193 Petersberg 06193 Ostrau 06193 Nehlitz 06193 Nauendorf 06193 Morl 06193 Mösthinsdorf 06193 Löbejün 06198 Salzmünde 06198 Kloschwitz 06198 Wettin 06198 Fienstedt 06198 Dößel 06198 Döblitz 06198 Brachwitz 06198 Neutz-Lettewitz 06198 Beesenstedt 06198 Gimritz 06217 Beuna 06217 Merseburg 06217 Geusa 06231 Tollwitz 06231 Rodden 06231 Kreypau 06231 Kötzschau 06231 Oebles-Schlechtewitz 06231 Nempitz 06231 Bad Dürrenberg 06237 Spergau 06237 Leuna 06242 Roßbach 06242 Krumpa 06242 Großkayna 06242 Braunsbedra 06246 Knapendorf 06246 Klobikau 06246 Delitz am Berge 06246 Milzau 06246 Bad Lauchstädt 06249 Mücheln (Geiseltal) 06254 Wallendorf 06254 Kötschlitz 06254 Horburg-Maßlau 06254 Günthersdorf 06254 Zweimen 06254 Zöschen 06254 Friedensdorf 06254 Luppenau 06255 Schafstädt 06255 Wünsch 06258 Schkopau 06258 Korbetha 06259 Frankleben 06268 Vitzenburg 06268 Steigra 06268 Schmon 06268 Leimbach 06268 Langeneichstädt 06268 Ziegelroda 06268 Weißenschirmbach 06268 Grockstädt 06268 Querfurt 06268 Oechlitz 06268 Obhausen 06268 Nemsdorf-Göhrendorf 06268 Albersroda 06268 Barnstädt 06279 Schraplau 06279 Farnstädt 06279 Esperstedt 06279 Alberstedt 06295 Volkstedt 06295 Unterrißdorf 06295 Schmalzerode 06295 Rottelsdorf 06295 Rothenschirmbach 06295 Hornburg 06295 Hedersleben 06295 Wolferode 06295 Dederstedt 06295 Burgsdorf 06295 Bornstedt 06295 Bischofrode 06295 Polleben 06295 Osterhausen 06295 Neehausen 06295 Lutherstadt Eisleben 06308 Siersleben 06308 Siebigerode 06308 Klostermansfeld 06308 Hübitz 06308 Augsdorf 06308 Annarode 06308 Benndorf 06311 Helbra 06313 Hergisdorf 06313 Wimmelburg 06313 Ahlsdorf 06317 Stedten 06317 Seeburg 06317 Röblingen am See 06317 Erdeborn 06317 Lüttchendorf 06317 Aseleben 06317 Amsdorf 06318 Wansleben am See 06333 Walbeck 06333 Sylda 06333 Ritterode 06333 Hettstedt 06333 Harkerode 06333 Wiederstedt 06333 Welfesholz 06333 Welbsleben 06333 Endorf 06333 Bräunrode 06333 Quenstedt 06333 Neuplatendorf 06333 Arnstedt 06333 Greifenhagen 06343 Vatterode 06343 Biesenrode 06343 Piskaborn 06343 Möllendorf 06343 Mansfeld 06343 Gorenzen 06347 Ihlewitz 06347 Heiligenthal 06347 Zabenstedt 06347 Gerbstedt 06347 Friedeburgerhütte 06347 Friedeburg 06347 Freist 06348 Großörner 06366 Köthen 06369 Trinum 06369 Trebbichau an der Fuhne 06369 Schortewitz 06369 Riesdorf 06369 Reupzig 06369 Zehbitz 06369 Zabitz 06369 Wulfen 06369 Wülknitz 06369 Wörbzig 06369 Weißandt-Gölzau 06369 Großpaschleben 06369 Großbadegast 06369 Drosa 06369 Dornbock 06369 Dohndorf 06369 Diebzig 06369 Cosa 06369 Cösitz 06369 Radegast 06369 Prosigk 06369 Löbnitz an der Linde 06369 Arensdorf 06369 Görzig 06369 Glauzig 06385 Aken 06386 Scheuder 06386 Hinsdorf 06386 Fraßdorf 06386 Elsnigk 06386 Chörau 06386 Quellendorf 06386 Osternienburg 06386 Micheln 06386 Meilendorf 06386 Libbesdorf 06386 Reppichau 06388 Wieskau 06388 Gröbzig 06388 Edderitz 06388 Piethen 06388 Maasdorf 06388 Baasdorf 06406 Bernburg 06408 Latdorf 06408 Ilberstedt 06408 Wohlsdorf 06408 Gröna 06408 Cörmigk 06408 Biendorf 06408 Preußlitz 06408 Poley 06408 Peißen 06408 Aderstedt 06408 Baalberge 06420 Rothenburg 06420 Lebendorf 06420 Könnern 06420 Zickeritz 06420 Wiendorf 06420 Gerlebogk 06420 Edlau 06420 Domnitz 06420 Golbitz 06425 Strenznaundorf 06425 Schackstedt 06425 Plötzkau 06425 Alsleben (Saale) 06425 Belleben 06425 Beesenlaublingen 06429 Wedlitz 06429 Gerbitz 06429 Pobzig 06429 Nienburg (Saale) 06429 Neugattersleben 06449 Schadeleben 06449 Schackenthal 06449 Klein Schierstedt 06449 Groß Schierstedt 06449 Winningen 06449 Wilsleben 06449 Westdorf 06449 Friedrichsaue 06449 Cochstedt 06449 Neu Königsaue 06449 Aschersleben 06449 Giersleben 06456 Sandersleben 06456 Freckleben 06456 Drohndorf 06456 Mehringen 06458 Heteborn 06458 Hedersleben 06458 Hausneindorf 06458 Wedderstedt 06463 Ermsleben 06463 Radisleben 06463 Meisdorf 06463 Reinstedt 06464 Frose 06466 Gatersleben 06467 Hoym 06469 Nachterstedt 06484 Westerhausen 06484 Ditfurt 06484 Quedlinburg 06493 Straßberg 06493 Schielo 06493 Königerode 06493 Harzgerode 06493 Dankerode 06493 Neudorf 06493 Ballenstedt 06502 Weddersleben 06502 Warnstedt 06502 Thale 06502 Neinstedt 06507 Timmenrode 06507 Stecklenberg 06507 Siptenfelde 06507 Rieder 06507 Güntersberge 06507 Friedrichsbrunn 06507 Allrode 06507 Gernrode 06507 Bad Suderode 06526 Sangerhausen 06528 Wallhausen 06528 Sotterhausen 06528 Rotha 06528 Riethnordhausen 06528 Riestedt 06528 Kleinleinungen 06528 Horla 06528 Holdenstedt 06528 Hainrode 06528 Hackpfüffel 06528 Wettelrode 06528 Großleinungen 06528 Grillenberg 06528 Emseloh 06528 Edersleben 06528 Drebsdorf 06528 Brücken 06528 Breitenbach 06528 Blankenheim 06528 Beyernaumburg 06528 Pölsfeld 06528 Obersdorf 06528 Oberröblingen 06528 Morungen 06528 Martinsrieth 06528 Liedersdorf 06528 Lengefeld 06528 Gonna 06536 Roßla 06536 Hayn 06536 Wolfsberg 06536 Wickerode 06536 Dietersdorf 06536 Breitungen 06536 Questenberg 06536 Berga 06536 Bennungen 06537 Tilleda 06537 Kelbra 06542 Katharinenrieth 06542 Wolferstedt 06542 Winkel 06542 Nienstedt 06542 Niederröblingen 06542 Mittelhausen 06542 Allstedt 06543 Ulzigerode 06543 Stangerode 06543 Ritzgerode 06543 Hermerode 06543 Wippra 06543 Wieserode 06543 Friesdorf 06543 Braunschwende 06543 Pansfelde 06543 Molmerswende 06543 Alterode 06543 Abberode 06547 Stolberg (Harz) 06547 Schwenda 06547 Breitenstein 06548 Uftrungen 06548 Rottleberode 06556 Ichstedt 06556 Ringleben 06556 Voigtstedt 06556 Bretleben 06556 Reinsdorf 06556 Borxleben 06556 Kalbsrieth 06556 Artern 06556 Mönchpfiffel-Nikolausrieth 06556 Heygendorf 06567 Göllingen 06567 Bad Frankenhausen 06567 Steinthaleben 06567 Seega 06567 Esperstedt 06567 Günserode 06567 Rottleben 06571 Gehofen 06571 Wiehe 06571 Donndorf 06571 Nausitz 06571 Roßleben 06577 Etzleben 06577 Gorsleben 06577 Hauteroda 06577 Oberheldrungen 06577 Hemleben 06577 Heldrungen 06578 Bilzingsleben 06578 Oldisleben 06578 Kannawurf 06618 Utenbach 06618 Schönburg 06618 Leislau 06618 Janisroda 06618 Wethau 06618 Casekirchen 06618 Prießnitz 06618 Pödelist 06618 Naumburg 06618 Molau 06618 Mertendorf 06618 Löbitz 06618 Görschen 06618 Gieckau 06628 Taugwitz 06628 Spielberg 06628 Crölpa-Löbschütz 06628 Möllern 06628 Abtlöbnitz 06628 Bad Kösen 06632 Schleberoda 06632 Zeuchfeld 06632 Gröst 06632 Größnitz 06632 Freyburg 06632 Ebersroda 06632 Branderoda 06632 Baumersroda 06632 Balgstädt 06632 Gleina 06636 Laucha 06636 Kirchscheidungen 06636 Hirschroda 06636 Weischütz 06636 Burgscheidungen 06636 Golzen 06638 Karsdorf 06642 Wangen 06642 Wohlmirstedt 06642 Bucha 06642 Nebra 06642 Memleben 06642 Altenroda 06642 Reinsdorf 06647 Thalwinkel 06647 Steinburg 06647 Saubach 06647 Klosterhäseler 06647 Kahlwinkel 06647 Wischroda 06647 Burkersroda 06647 Billroda 06647 Lossa 06647 Bad Bibra 06648 Tromsdorf 06648 Herrengosserstedt 06648 Eckartsberga 06648 Burgholzhausen 06667 Uichteritz 06667 Tagewerben 06667 Storkau 06667 Stößen 06667 Leißling 06667 Langendorf 06667 Weißenfels 06667 Gröbitz 06667 Burgwerben 06667 Prittitz 06667 Pretzsch 06667 Markwerben 06667 Reichardtswerben 06667 Goseck 06679 Webau 06679 Taucha 06679 Hohenmölsen 06679 Zorbau 06679 Muschwitz 06679 Granschütz 06682 Trebnitz 06682 Teuchern 06682 Schelkau 06682 Krauschwitz 06682 Werschen 06682 Gröben 06682 Deuben 06682 Nessa 06686 Starsiedel 06686 Sössen 06686 Röcken 06686 Rippach 06686 Großgörschen 06686 Dehlitz 06686 Poserna 06686 Lützen 06688 Schkortleben 06688 Wengelsdorf 06688 Großkorbetha 06712 Schellbach 06712 Kretzschau 06712 Könderitz 06712 Heuckewalde 06712 Haynsburg 06712 Zeitz 06712 Würchwitz 06712 Wittgendorf 06712 Droßdorf 06712 Draschwitz 06712 Döschwitz 06712 Breitenbach 06712 Bornitz 06712 Geußnitz 06712 Bergisdorf 06712 Göbitz 06712 Grana 06721 Waldau 06721 Unterkaka 06721 Osterfeld 06721 Meineweh 06721 Goldschau 06722 Kleinhelmsdorf 06722 Wetterzeube 06722 Weickelsdorf 06722 Droyßig 06724 Spora 06724 Kayna 06724 Weißenborn 06724 Bröckau 06725 Reuden 06725 Profen 06727 Theißen 06727 Döbris 06727 Nonnewitz 06727 Luckenau 06729 Tröglitz 06729 Langendorf 06729 Rehmsdorf 06749 Friedersdorf 06749 Bitterfeld 06766 Thalheim 06766 Rödgen 06766 Wolfen 06766 Bobbau 06773 Uthausen 06773 Selbitz 06773 Schköna 06773 Rotta 06773 Jüdenberg 06773 Gröbern 06773 Radis 06773 Bergwitz 06773 Gräfenhainichen 06773 Gossa 06773 Kemberg 06774 Tornau 06774 Söllichau 06774 Schwemsal 06774 Schlaitz 06774 Rösa 06774 Krina 06774 Pouch 06774 Plodda 06774 Mühlbeck 06779 Tornau 06779 Thurland 06779 Schierau 06779 Salzfurtkapelle 06779 Retzau 06779 Marke 06779 Raguhn 06780 Stumsdorf 06780 Spören 06780 Schrenz 06780 Großzöberitz 06780 Zörbig 06780 Quetzdölsdorf 06780 Löberitz 06780 Göttnitz 06780 Heideloh 06780 Sandersdorf 06785 Schleesen 06785 Kakau 06785 Horstdorf 06785 Brandhorst 06785 Oranienbaum 06786 Vockerode 06786 Riesigk 06786 Wörlitz 06786 Griesen 06786 Rehsen 06786 Gohrau 06791 Zschornewitz 06791 Möhlau 06792 Sandersdorf 06794 Zscherndorf 06794 Glebitzsch 06794 Renneritz 06794 Ramsin 06794 Sandersdorf 06796 Brehna 06800 Jeßnitz 06800 Altjeßnitz 06803 Greppin 06804 Burgkemnitz 06804 Muldenstein 06808 Holzweißig 06809 Roitzsch 06809 Petersroda 06842 Dessau 06844 Dessau 06846 Dessau 06847 Dessau 06849 Dessau 06862 Thießen 06862 Stackelitz 06862 Serno 06862 Roßlau 06862 Rodleben 06862 Jeber-Bergfrieden 06862 Hundeluft 06862 Brambach 06862 Bräsen 06862 Ragösen 06869 Senst 06869 Köselitz 06869 Klieken 06869 Zieko 06869 Wörpen 06869 Griebo 06869 Düben 06869 Coswig 06869 Cobbelsdorf 06869 Buko 06869 Möllensdorf 06886 Lutherstadt Wittenberg 06888 Zörnigall 06888 Eutzsch 06888 Dietrichsdorf 06888 Dabrun 06888 Mühlanger 06888 Mochau 06888 Abtsdorf 06895 Leetza 06895 Kropstädt 06895 Zahna 06895 Bülzig 06895 Boßdorf 06895 Rahnsdorf 06896 Straach 06896 Schmilkendorf 06896 Nudersdorf 06901 Wartenburg 06901 Schnellin 06901 Kemberg 06901 Dorna 06901 Rackith 06901 Ateritz 06901 Globig-Bleddin 06905 Korgau 06905 Meuro 06905 Bad Schmiedeberg 06909 Trebitz 06909 Priesitz 06909 Pretzsch/Elbe 06917 Schützberg 06917 Klöden 06917 Jessen (Elster) 06917 Rade 06918 Seyda 06918 Zemnick 06918 Gentha 06918 Gadegast 06918 Elster/Elbe 06918 Naundorf bei Seyda 06918 Morxdorf 06918 Mellnitz 06918 Listerfehrda 06922 Lebien 06922 Labrun 06922 Prettin 06922 Plossig 06922 Axien 06925 Groß Naundorf 06925 Bethau 06925 Purzien 06925 Löben 06925 Annaburg 06926 Kleinkorga 06926 Holzdorf 06926 Buschkuhnsdorf 06926 Premsendorf 06926 Neuerstadt 06926 Mönchenhöfe 06926 Reicho 06928 Linda (Elster) 07318 Wittgendorf 07318 Arnsgereuth 07318 Saalfeld/Saale 07330 Probstzella 07330 Marktgölitz 07333 Unterwellenborn 07334 Goßwitz 07334 Kamsdorf 07336 Könitz 07336 Birkigt 07338 Drognitz 07338 Altenbeuthen 07338 Hohenwarte 07338 Leutenberg 07338 Kaulsdorf 07343 Wurzbach 07349 Lehesten 07356 Lobenstein 07356 Neundorf (bei Lobenstein) 07366 Harra 07366 Birkenhügel 07366 Blankenberg 07366 Pottiga 07366 Schlegel 07366 Blankenstein 07368 Saalburg-Ebersdorf 07368 Remptendorf 07381 Oppurg 07381 Moxa 07381 Wernburg 07381 Döbritz 07381 Solkwitz 07381 Oberoppurg 07381 Paska 07381 Bodelwitz 07381 Pößneck 07381 Nimritz 07381 Langenorla 07387 Lausnitz bei Pößneck 07387 Krölpa 07389 Wilhelmsdorf 07389 Knau 07389 Gertewitz 07389 Gössitz 07389 Bucha 07389 Schmorda 07389 Keila 07389 Ranis 07389 Seisla 07389 Peuschen 07389 Quaschwitz 07389 Grobengereuth 07407 Rudolstadt 07407 Heilingen 07407 Uhlstädt-Kirchhasel 07407 Remda-Teichel 07407 Großkochberg 07422 Rottenbach 07422 Saalfelder Höhe 07422 Bad Blankenburg 07426 Bechstedt 07426 Königsee 07426 Dröbischau 07426 Oberhain 07426 Allendorf 07427 Schwarzburg 07429 Döschnitz 07429 Sitzendorf 07429 Rohrbach 07545 Gera 07546 Gera 07548 Gera 07549 Gera 07551 Gera 07552 Gera 07554 Pölzig 07554 Brahmenau 07554 Korbußen 07554 Bethenhausen 07554 Kauern 07554 Hirschfeld 07554 Schwaara 07557 Hundhaupten 07557 Bocka 07557 Harth-Pöllnitz 07557 Zedlitz 07557 Crimla 07570 Schömberg 07570 Wünschendorf 07570 Harth-Pöllnitz 07570 Hohenölsen 07570 Teichwitz 07570 Weida 07570 Endschütz 07570 Steinsdorf 07580 Gauern 07580 Paitzdorf 07580 Linda bei Weida 07580 Reichstädt 07580 Hilbersdorf 07580 Rückersdorf 07580 Großenstein 07580 Braunichswalde 07580 Ronneburg 07580 Seelingstädt 07586 Bad Köstritz 07586 Caaschwitz 07586 Kraftsdorf 07586 Hartmannsdorf 07589 Lindenkreuz 07589 Lederhose 07589 Harth-Pöllnitz 07589 Schwarzbach 07589 Münchenbernsdorf 07589 Saara 07607 Heideland 07607 Hainspitz 07607 Gösen 07607 Eisenberg 07613 Seifartsdorf 07613 Rauda 07613 Crossen an der Elster 07613 Hartmannsdorf 07613 Walpernhain 07613 Silbitz 07616 Graitschen bei Bürgel 07616 Rauschwitz 07616 Petersberg 07616 Nausnitz 07616 Bürgel 07616 Poxdorf 07616 Serba 07619 Mertendorf 07619 Schkölen 07629 Reichenbach 07629 Hermsdorf 07629 Sankt Gangloff 07629 Schleifreisen 07639 Tautenhain 07639 Weißenborn 07639 Bad Klosterlausnitz 07646 Kleinbockedra 07646 Ruttersdorf-Lotschen 07646 Möckern 07646 Bollberg 07646 Geisenhain 07646 Lippersdorf-Erdmannsdorf 07646 Schöngleina 07646 Meusebach 07646 Schlöben 07646 Großbockedra 07646 Rausdorf 07646 Tautendorf 07646 Bremsnitz 07646 Eineborn 07646 Weißbach 07646 Rattelsdorf 07646 Laasdorf 07646 Bobeck 07646 Quirla 07646 Albersdorf 07646 Stadtroda 07646 Waltersdorf 07646 Unterbodnitz 07646 Tröbnitz 07646 Scheiditz 07646 Karlsdorf 07646 Oberbodnitz 07646 Kleinebersdorf 07646 Waldeck 07646 Ottendorf 07646 Gneus 07646 Mörsdorf 07646 Tissa 07646 Renthendorf 07646 Trockenborn-Wolfersdorf 07743 Jena 07745 Jena 07747 Jena 07749 Jena 07751 Großpürschütz 07751 Zöllnitz 07751 Jenalöbnitz 07751 Sulza 07751 Großlöbichau 07751 Golmsdorf 07751 Bucha 07751 Milda 07751 Rothenstein 07751 Löberschütz 07768 Bibra 07768 Kahla 07768 Schöps 07768 Reinstädt 07768 Orlamünde 07768 Eichenberg 07768 Altenberga 07768 Seitenroda 07768 Hummelshain 07768 Lindig 07768 Gumperda 07768 Freienorla 07768 Großeutersdorf 07768 Kleineutersdorf 07774 Frauenprießnitz 07774 Thierschneck 07774 Wichmar 07774 Camburg 07778 Tautenburg 07778 Hainichen 07778 Dornburg 07778 Lehesten 07778 Zimmern 07778 Dorndorf-Steudnitz 07778 Neuengönna 07806 Neustadt an der Orla 07806 Dreba 07806 Lausnitz bei Neustadt an der Orla 07806 Weira 07819 Linda bei Neustadt an der Orla 07819 Schmieritz 07819 Dreitzsch 07819 Tömmelsdorf 07819 Lemnitz 07819 Mittelpöllnitz 07819 Rosendorf 07819 Pillingsdorf 07819 Miesitz 07819 Geroda 07819 Triptis 07907 Schleiz 07907 Pörmitz 07907 Dragensdorf 07907 Plothen 07907 Löhma 07907 Tegau 07907 Göschitz 07907 Dittersdorf 07907 Oettersdorf 07907 Görkwitz 07919 Mühltroff 07919 Kirschkau 07922 Tanna 07924 Schöndorf 07924 Volkmannsdorf 07924 Eßbach 07924 Crispendorf 07924 Neundorf (bei Schleiz) 07924 Ziegenrück 07926 Gefell 07927 Hirschberg 07929 Saalburg-Ebersdorf 07937 Zeulenroda 07937 Silberfeld 07937 Vogtländisches Oberland 07937 Langenwolschendorf 07937 Zadelsdorf 07950 Merkendorf 07950 Göhren-Döhlen 07950 Staitz 07950 Wiebelsdorf 07950 Triebes 07950 Weißendorf 07952 Vogtländisches Oberland 07952 Pausa 07955 Braunsdorf 07955 Auma 07957 Hain 07957 Langenwetzendorf 07958 Hohenleuben 07973 Greiz 07980 Wildetaube 07980 Neumühle 07980 Berga/Elster 07980 Neugernsdorf 07980 Kühdorf 07980 Lunzig 07985 Elsterberg 07985 Vogtländisches Oberland 07987 Mohlsdorf 07989 Teichwolframsdorf 08056 Zwickau 08058 Zwickau 08060 Zwickau 08062 Zwickau 08064 Zwickau 08066 Zwickau 08107 Kirchberg 08107 Hartmannsdorf bei Kirchberg 08107 Hirschfeld 08112 Wilkau-Haßlau 08115 Lichtentanne 08118 Hartenstein 08132 Mülsen 08134 Langenweißbach 08134 Wildenfels 08141 Reinsdorf 08144 Hirschfeld 08147 Crinitzberg 08209 Auerbach/Vogtland 08223 Grünbach 08223 Werda 08223 Falkenstein/Vogtland 08223 Neustadt/Vogtland 08228 Rodewisch 08233 Treuen 08236 Ellefeld 08237 Steinberg 08239 Bergen 08248 Klingenthal/Sachsen 08258 Markneukirchen 08261 Schöneck/Vogtland 08262 Tannenbergsthal/Vogtland 08262 Morgenröthe-Rautenkranz 08265 Erlbach 08267 Zwota 08269 Hammerbrücke 08280 Aue 08289 Schneeberg 08294 Lößnitz 08297 Zwönitz 08301 Schlema 08304 Schönheide 08309 Eibenstock 08312 Lauter/Sachsen 08315 Bernsbach 08321 Zschorlau 08324 Bockau 08326 Sosa 08328 Stützengrün 08340 Schwarzenberg/Erzgebirge 08340 Beierfeld 08349 Erlabrunn 08349 Johanngeorgenstadt 08352 Markersbach 08352 Raschau 08352 Pöhla 08355 Rittersgrün 08358 Grünhain 08359 Breitenbrunn/Erzgebirge 08371 Glauchau 08373 Remse 08393 Dennheritz 08393 Schönberg 08393 Meerane 08396 Waldenburg 08396 Oberwiera 08412 Werdau 08412 Leubnitz 08427 Fraureuth 08428 Langenbernsdorf 08451 Crimmitschau 08459 Neukirchen/Pleiße 08468 Reichenbach/Vogtland 08468 Heinsdorfergrund 08485 Lengenfeld 08491 Netzschkau 08491 Limbach 08496 Neumark 08499 Mylau 08523 Plauen 08525 Plauen 08527 Plauen 08529 Plauen 08538 Reuth 08538 Burgstein 08538 Weischlitz 08539 Mehltheuer 08541 Theuma 08541 Neuensalz 08543 Pöhl 08548 Syrau 08606 Bösenbrunn 08606 Triebel/Vogtland 08606 Mühlental 08606 Oelsnitz 08606 Tirpersdorf 08626 Eichigt 08626 Adorf 08645 Bad Elster 08648 Bad Brambach 09111 Chemnitz 09112 Chemnitz 09113 Chemnitz 09114 Chemnitz 09116 Chemnitz 09117 Chemnitz 09119 Chemnitz 09120 Chemnitz 09122 Chemnitz 09123 Chemnitz 09125 Chemnitz 09126 Chemnitz 09127 Chemnitz 09130 Chemnitz 09131 Chemnitz 09212 Limbach-Oberfrohna 09217 Burgstädt 09221 Neukirchen/Erzgebirge 09232 Hartmannsdorf 09235 Burkhardtsdorf 09236 Claußnitz 09241 Mühlau 09243 Niederfrohna 09244 Lichtenau 09249 Taura 09306 Wechselburg 09306 Erlau 09306 Königsfeld 09306 Zettlitz 09306 Seelitz 09306 Rochlitz 09306 Thalheim/Erzgebirge 09306 Königshain-Wiederau 09322 Penig 09326 Geringswalde 09328 Lunzenau 09337 Callenberg 09337 Hohenstein-Ernstthal 09337 Bernsdorf 09350 Lichtenstein/Sachsen 09353 Oberlungwitz 09355 Gersdorf 09356 Sankt Egidien 09366 Stollberg/Erzgebirge 09366 Niederdorf 09376 Oelsnitz/Erzgebirge 09385 Lugau/Erzgebirge 09385 Erlbach-Kirchberg 09387 Jahnsdorf/Erzgebirge 09390 Gornsdorf 09392 Auerbach 09394 Hohndorf 09395 Hormersdorf 09399 Niederwürschnitz 09405 Zschopau 09405 Gornau/Erzgebirge 09419 Thum 09423 Gelenau/Erzgebirge 09427 Ehrenfriedersdorf 09429 Wolkenstein 09430 Drebach 09430 Venusberg 09432 Großolbersdorf 09435 Scharfenstein 09437 Waldkirchen/Erzgebirge 09437 Börnichen/Erzgebirge 09439 Amtsberg 09456 Annaberg-Buchholz 09456 Mildenau 09465 Sehmatal 09468 Geyer 09468 Tannenberg 09471 Königswalde 09471 Bärenstein 09474 Crottendorf 09477 Jöhstadt 09481 Elterlein 09481 Scheibenberg 09484 Oberwiesenthal 09487 Schlettau 09488 Wiesa 09496 Marienberg 09496 Pobershau 09509 Pockau 09514 Lengefeld 09517 Zöblitz 09518 Großrückerswalde 09526 Pfaffroda 09526 Heidersdorf 09526 Olbernhau 09544 Neuhausen/Erzgebirge 09548 Deutschneudorf 09548 Seiffen/Erzgebirge 09557 Flöha 09569 Falkenau 09569 Frankenstein 09569 Gahlenz 09569 Oederan 09573 Leubsdorf 09573 Augustusburg 09575 Eppendorf 09577 Niederwiesa 09579 Borstendorf 09579 Grünhainichen 09599 Freiberg 09600 Weißenborn/Erzgebirge 09600 Oberschöna 09600 Niederschöna 09603 Großschirma 09618 Brand-Erbisdorf 09618 Großhartmannsdorf 09619 Mulda/Sachsen 09619 Sayda 09619 Dorfchemnitz bei Sayda 09623 Rechenberg-Bienenmühle 09623 Frauenstein 09627 Bobritzsch 09627 Hilbersdorf 09629 Reinsberg 09633 Halsbrücke 09634 Siebenlehn 09638 Lichtenberg/Erzgebirge 09648 Kriebstein 09648 Mittweida 09648 Altmittweida 09661 Tiefenbach 09661 Striegistal 09661 Rossau 09661 Hainichen 09669 Frankenberg/Sachsen 10115 Berlin 10117 Berlin 10119 Berlin 10178 Berlin 10179 Berlin 10243 Berlin 10245 Berlin 10247 Berlin 10249 Berlin 10315 Berlin 10317 Berlin 10318 Berlin 10319 Berlin 10365 Berlin 10367 Berlin 10369 Berlin 10405 Berlin 10407 Berlin 10409 Berlin 10435 Berlin 10437 Berlin 10439 Berlin 10551 Berlin 10553 Berlin 10555 Berlin 10557 Berlin 10559 Berlin 10585 Berlin 10587 Berlin 10589 Berlin 10623 Berlin 10625 Berlin 10627 Berlin 10629 Berlin 10707 Berlin 10709 Berlin 10711 Berlin 10713 Berlin 10715 Berlin 10717 Berlin 10719 Berlin 10777 Berlin 10779 Berlin 10781 Berlin 10783 Berlin 10785 Berlin 10787 Berlin 10789 Berlin 10823 Berlin 10825 Berlin 10827 Berlin 10829 Berlin 10961 Berlin 10963 Berlin 10965 Berlin 10967 Berlin 10969 Berlin 10997 Berlin 10999 Berlin 12043 Berlin 12045 Berlin 12047 Berlin 12049 Berlin 12051 Berlin 12053 Berlin 12055 Berlin 12057 Berlin 12059 Berlin 12099 Berlin 12101 Berlin 12103 Berlin 12105 Berlin 12107 Berlin 12109 Berlin 12157 Berlin 12159 Berlin 12161 Berlin 12163 Berlin 12165 Berlin 12167 Berlin 12169 Berlin 12203 Berlin 12205 Berlin 12207 Berlin 12209 Berlin 12247 Berlin 12249 Berlin 12277 Berlin 12279 Berlin 12305 Berlin 12307 Berlin 12309 Berlin 12347 Berlin 12349 Berlin 12351 Berlin 12353 Berlin 12355 Berlin 12357 Berlin 12359 Berlin 12435 Berlin 12437 Berlin 12439 Berlin 12459 Berlin 12487 Berlin 12489 Berlin 12524 Berlin 12526 Berlin 12527 Berlin 12529 Berlin 12529 Schönefeld 12555 Berlin 12557 Berlin 12559 Berlin 12587 Berlin 12589 Berlin 12619 Berlin 12621 Berlin 12623 Berlin 12627 Berlin 12629 Berlin 12679 Berlin 12681 Berlin 12683 Berlin 12685 Berlin 12687 Berlin 12689 Berlin 13051 Berlin 13053 Berlin 13055 Berlin 13057 Berlin 13059 Berlin 13086 Berlin 13088 Berlin 13089 Berlin 13125 Berlin 13127 Berlin 13129 Berlin 13156 Berlin 13158 Berlin 13159 Berlin 13187 Berlin 13189 Berlin 13347 Berlin 13349 Berlin 13351 Berlin 13353 Berlin 13355 Berlin 13357 Berlin 13359 Berlin 13403 Berlin 13405 Berlin 13407 Berlin 13409 Berlin 13435 Berlin 13437 Berlin 13439 Berlin 13465 Berlin 13467 Berlin 13469 Berlin 13503 Berlin 13505 Berlin 13507 Berlin 13509 Berlin 13581 Berlin 13583 Berlin 13585 Berlin 13587 Berlin 13589 Berlin 13591 Berlin 13593 Berlin 13595 Berlin 13597 Berlin 13599 Berlin 13627 Berlin 13629 Berlin 14050 Berlin 14052 Berlin 14053 Berlin 14055 Berlin 14057 Berlin 14059 Berlin 14089 Berlin 14109 Berlin 14129 Berlin 14163 Berlin 14165 Berlin 14167 Berlin 14169 Berlin 14193 Berlin 14195 Berlin 14197 Berlin 14199 Berlin 14467 Potsdam 14469 Potsdam 14471 Potsdam 14473 Potsdam 14476 Neu Fahrland 14476 Fahrland 14476 Töplitz 14476 Satzkorn 14476 Uetz-Paaren 14476 Groß Glienicke 14476 Marquardt 14476 Golm 14476 Seeburg 14478 Potsdam 14480 Potsdam 14482 Potsdam 14513 Teltow 14532 Nudow 14532 Stahnsdorf 14532 Philippsthal 14532 Kleinmachnow 14532 Fahlhorst 14542 Schwielowsee 14542 Kloster Lehnin 14542 Werder (Havel) 14547 Beelitz 14547 Stücken 14548 Schwielowsee 14550 Krielow 14550 Derwitz 14550 Bochow 14550 Schmergow 14550 Deetz 14550 Groß Kreutz 14552 Fresdorf 14552 Michendorf 14552 Wildenbruch 14552 Saarmund 14552 Tremsdorf 14554 Seddiner See 14557 Langerwisch 14557 Wilhelmshorst 14558 Bergholz-Rehbrücke 14612 Falkensee 14621 Schönwalde 14624 Dallgow-Döberitz 14641 Groß Behnitz 14641 Paulinenaue 14641 Wustermark 14641 Tremmen 14641 Klein Behnitz 14641 Tietzow 14641 Lietzow 14641 Retzow 14641 Nauen 14641 Zeestow 14641 Pessin 14641 Pausin 14641 Brädikow 14641 Berge 14641 Bergerdamm 14641 Wansdorf 14641 Grünefeld 14641 Bredow 14641 Paaren im Glien 14641 Ribbeck 14641 Mühlenberge 14641 Perwenitz 14641 Etzin 14641 Kienberg 14641 Wachow 14641 Börnicke 14641 Selbelang 14641 Markee 14641 Falkenrehde 14656 Brieselang 14662 Friesack 14662 Warsow 14662 Mühlenberge 14662 Vietznitz 14669 Ketzin 14669 Zachow 14712 Rathenow 14715 Märkisch Luch 14715 Vieritz 14715 Jerchel 14715 Großwudicke 14715 Nennhausen 14715 Kriele 14715 Liepe 14715 Gräningen 14715 Bützer 14715 Bamme 14715 Havelaue 14715 Mützlitz 14715 Stechow-Ferchesar 14715 Nitzahn 14715 Kotzen 14715 Zollchow 14715 Landin 14715 Milow 14715 Seeblick 14715 Möthlitz 14715 Schollene 14727 Premnitz 14727 Döberitz 14728 Havelaue 14728 Gollenberg 14728 Kleßen-Görne 14728 Rhinow 14770 Brandenburg an der Havel 14772 Brandenburg an der Havel 14774 Brandenburg an der Havel 14776 Brandenburg an der Havel 14778 Jeserig 14778 Planebruch 14778 Wust 14778 Wollin 14778 Havelsee 14778 Roskow 14778 Wenzlow 14778 Schenkenberg 14778 Kloster Lehnin 14778 Götz 14778 Päwesin 14778 Gollwitz 14778 Beetzseeheide 14778 Golzow 14778 Trechwitz 14778 Planetal 14778 Beetzsee 14789 Wusterwitz 14789 Bensdorf 14789 Rosenau 14793 Rottstock 14793 Ziesar 14793 Gräben 14793 Buckautal 14797 Kloster Lehnin 14798 Havelsee 14806 Hagelberg 14806 Belzig 14806 Schwanebeck 14806 Planetal 14822 Borkheide 14822 Planebruch 14822 Borkwalde 14822 Linthe 14822 Mühlenfließ 14822 Brück 14823 Niemegk 14823 Rabenstein/Fläming 14823 Mühlenfließ 14827 Wiesenburg 14828 Görzke 14913 Jüterbog 14913 Nuthe-Urstromtal 14913 Niedergörsdorf 14913 Wahlsdorf 14913 Ihlow 14913 Niederer Fläming 14913 Niebendorf-Heinsdorf 14913 Herbersdorf 14913 Hohenseefeld 14929 Treuenbrietzen 14943 Lühsdorf 14943 Lüdersdorf 14943 Luckenwalde 14959 Schönhagen 14959 Trebbin 14974 Ludwigsfelde 14974 Thyrow 14979 Großbeeren 15230 Frankfurt (Oder) 15232 Frankfurt (Oder) 15234 Frankfurt (Oder) 15236 Jacobsdorf 15236 Treplin 15236 Frankfurt (Oder) 15295 Ziltendorf 15295 Wiesenau 15295 Groß Lindow 15295 Brieskow-Finkenheerd 15299 Grunow-Dammendorf 15299 Müllrose 15299 Mixdorf 15306 Vierlinden 15306 Gusow-Platkow 15306 Falkenhagen 15306 Lindendorf 15306 Fichtenhöhe 15306 Werbig 15306 Lietzen 15306 Seelow 15320 Neutrebbin 15320 Neuhardenberg 15320 Sietzing 15324 Ortwig 15324 Groß Neuendorf 15324 Neubarnim 15324 Gieshof-Zelliner Loose 15324 Kienitz 15324 Kiehnwerder 15324 Letschin 15326 Lebus 15326 Podelzig 15326 Zeschdorf 15326 Fichtenhöhe 15328 Reitwein 15328 Golzow 15328 Alt Tucheband 15328 Küstriner Vorland 15328 Zechin 15328 Bleyen-Genschmar 15344 Strausberg 15345 Oberbarnim 15345 Garzau-Garzin 15345 Lichtenow 15345 Rehfelde 15345 Prötzel 15345 Reichenow-Möglin 15345 Zinndorf 15345 Petershagen-Eggersdorf 15345 Altlandsberg 15345 Werder 15366 Dahlwitz-Hoppegarten 15366 Neuenhagen bei Berlin 15366 Hönow 15366 Münchehofe 15370 Fredersdorf-Vogelsdorf 15370 Petershagen-Eggersdorf 15374 Müncheberg 15377 Oberbarnim 15377 Ihlow 15377 Märkische Höhe 15377 Buckow 15377 Waldsieversdorf 15378 Hennickendorf 15378 Herzfelde 15517 Fürstenwalde/Spree 15518 Grünheide (Mark) 15518 Rauen 15518 Briesen (Mark) 15518 Steinhöfel 15518 Madlitz-Wilmersdorf 15518 Falkenberg 15518 Berkenbrück 15518 Langewahl 15526 Bad Saarow 15526 Reichenwalde 15526 Rietz-Neuendorf 15528 Grünheide (Mark) 15528 Spreenhagen 15537 Grünheide (Mark) 15537 Gosen 15537 Erkner 15537 Wernsdorf 15562 Rüdersdorf bei Berlin 15566 Schöneiche bei Berlin 15569 Woltersdorf 15711 Zeesen 15711 Königs Wusterhausen 15711 Schenkendorf 15732 Schulzendorf 15732 Eichwalde 15732 Waltersdorf 15738 Zeuthen 15741 Motzen 15741 Pätz 15741 Bestensee 15741 Gräbendorf 15745 Wildau 15746 Groß Köris 15748 Münchehofe 15748 Märkisch Buchholz 15749 Kiekebusch 15749 Mittenwalde 15749 Ragow 15749 Brusendorf 15749 Gallun 15751 Niederlehme 15752 Prieros 15752 Streganz 15752 Kolberg 15754 Blossin 15754 Senzig 15754 Dolgenbrodt 15754 Wolzig 15754 Bindow 15754 Gussow 15754 Dannenreich 15754 Friedersdorf 15755 Teupitz 15755 Schwerin 15755 Töpchin 15757 Löpten 15757 Oderin 15757 Briesen 15757 Halbe 15757 Freidorf 15758 Kablow 15758 Zernsdorf 15806 Kummersdorf-Alexanderdorf 15806 Kallinchen 15806 Mellensee 15806 Groß Machnow 15806 Zossen 15806 Schöneiche 15806 Nächst Neuendorf 15806 Nunsdorf 15806 Rehagen 15806 Telz 15806 Gadsdorf 15806 Glienick 15806 Groß Schulzendorf 15806 Saalow 15827 Dahlewitz 15827 Blankenfelde 15831 Waßmannsdorf 15831 Diepensee 15831 Jühnsdorf 15831 Groß Kienitz 15831 Großziethen 15831 Selchow 15831 Mahlow 15834 Rangsdorf 15837 Baruth/Mark 15838 Sperenberg 15838 Kummersdorf-Gut 15838 Klausdorf 15838 Wünsdorf 15848 Tauche 15848 Friedland 15848 Rietz-Neuendorf 15848 Speichrow 15848 Ragow-Merz 15848 Beeskow 15848 Plattkow 15859 Kummersdorf 15859 Storkow (Mark) 15864 Rietz-Neuendorf 15864 Diensdorf-Radlow 15864 Wendisch Rietz 15868 Friedland 15868 Leeskow 15868 Jamlitz 15868 Lieberose 15868 Ullersdorf 15868 Doberburg 15890 Eisenhüttenstadt 15890 Schlaubetal 15890 Siehdichum 15890 Vogelsang 15898 Neuzelle 15898 Neißemünde 15898 Lawitz 15907 Lübben (Spreewald) 15910 Wittmannsdorf-Bückchen 15910 Pretschen 15910 Dürrenhofe 15910 Hohenbrück-Neu Schadow 15910 Rietzneuendorf-Staakow 15910 Unterspreewald 15910 Schönwald 15910 Schuhlen-Wiese 15910 Alt-Schadow 15910 Krausnick-Groß Wasserburg 15910 Schlepzig 15910 Kuschkow 15910 Gröditsch 15913 Dollgen 15913 Sacrow-Waldow 15913 Alt Zauche 15913 Mochow 15913 Krugau 15913 Glietz 15913 Groß Leuthen 15913 Byhlen 15913 Caminchen 15913 Ressen-Zaue 15913 Lamsfeld-Groß Liebitz 15913 Laasow 15913 Leibchel 15913 Straupitz 15913 Wußwerk 15913 Neu Zauche 15913 Groß Leine 15913 Byhleguhre 15913 Jessern 15913 Klein Leine 15913 Goyatz 15913 Butzen 15913 Briesensee 15913 Biebersdorf 15926 Bersteland 15926 Heideblick 15926 Luckau 15926 Duben 15926 Cahnsdorf 15926 Schlabendorf 15926 Görlsdorf 15926 Walddrehna 15936 Dahmetal 15936 Dahme/Mark 15936 Steinreich 15938 Kasel-Golzig 15938 Steinreich 15938 Drahnsdorf 15938 Golßen 16225 Eberswalde 16230 Sydower Fließ 16230 Britz 16230 Breydin 16230 Melchow 16230 Chorin 16244 Finowfurt 16244 Altenhof 16247 Joachimsthal 16247 Friedrichswalde 16247 Althüttendorf 16247 Neugrimnitz 16247 Ziethen 16248 Lunow-Stolzenhagen 16248 Parsteinsee 16248 Hohenfinow 16248 Oderberg 16248 Bölkendorf 16248 Liepe 16248 Hohensaaten 16248 Niederfinow 16259 Heckelberg-Brunow 16259 Höhenland 16259 Schiffmühle 16259 Oderaue 16259 Beiersdorf-Freudenberg 16259 Neulewin 16259 Falkenberg 16259 Tiefensee 16259 Bad Freienwalde 16259 Neuenhagen 16259 Hohenwutzen 16259 Altglietzen 16259 Bralitz 16269 Wriezener Höhe 16269 Bliesdorf 16269 Wriezen 16278 Schöneberg 16278 Stolpe/Oder 16278 Neukünkendorf 16278 Frauenhagen 16278 Mürow 16278 Bruchhagen 16278 Wilmersdorf 16278 Crussow 16278 Wolletz 16278 Welsow 16278 Mark Landin 16278 Biesenbrow 16278 Kerkow 16278 Angermünde 16278 Herzsprung 16278 Görlsdorf 16278 Günterberg 16278 Greiffenberg 16278 Gellmersdorf 16278 Steinhöfel 16278 Schmargendorf 16278 Schmiedeberg 16278 Pinnow 16303 Schwedt/Oder 16306 Groß Pinnow 16306 Casekow 16306 Hohenselchow 16306 Wartin 16306 Schönow 16306 Vierraden 16306 Luckow-Petershagen 16306 Stendell 16306 Biesendahlshof 16306 Zichow 16306 Berkholz-Meyenburg 16306 Woltersdorf 16306 Friedrichsthal 16306 Blumberg 16306 Welsebruch 16306 Passow 16307 Geesow 16307 Neurochlitz 16307 Mescherin 16307 Gartz (Oder) 16307 Schönfeld 16307 Radekow 16307 Hohenreinkendorf 16307 Rosow 16307 Tantow 16321 Bernau 16321 Danewitz 16321 Lindenberg 16321 Rüdnitz 16321 Schönow 16321 Lobetal 16321 Börnicke 16341 Schwanebeck 16341 Zepernick 16348 Marienwerder 16348 Wandlitz 16348 Klosterfelde 16348 Zerpenschleuse 16348 Stolzenhagen 16348 Groß Schönebeck (Schorfheide) 16348 Prenden 16348 Ruhlsdorf 16352 Schönerlinde 16352 Basdorf 16352 Schönwalde 16356 Werneuchen 16356 Seefeld 16356 Blumberg 16356 Krummensee 16356 Eiche 16356 Wilmersdorf 16356 Ahrensfelde 16356 Schönfeld 16356 Hirschfelde 16356 Mehrow 16359 Biesenthal 16359 Lanke 16515 Nassenheide 16515 Wensickendorf 16515 Freienhagen 16515 Oranienburg 16515 Friedrichsthal 16515 Schmachtenhagen 16515 Neuholland 16515 Zehlendorf 16515 Malz 16515 Zühlsdorf 16540 Hohen Neuendorf 16540 Stolpe 16547 Birkenwerder 16548 Glienicke/Nordbahn 16552 Schildow 16559 Liebenthal 16559 Kreuzbruch 16559 Liebenwalde 16559 Hammer 16565 Lehnitz 16567 Mühlenbeck 16567 Schönfließ 16727 Velten 16727 Oberkrämer 16761 Hennigsdorf 16766 Kremmen 16766 Oberkrämer 16767 Germendorf 16767 Leegebruch 16775 Schulzendorf 16775 Blumenow 16775 Burgwall 16775 Kappe 16775 Badingen 16775 Löwenberger Land 16775 Zabelsdorf 16775 Marienthal 16775 Schönermark 16775 Großwoltersdorf 16775 Bredereiche 16775 Krewelin 16775 Tornow 16775 Barsdorf 16775 Mildenberg 16775 Klein-Mutz 16775 Rönnebeck 16775 Gransee 16775 Stechlin 16775 Sonnenberg 16792 Kurtschlag 16792 Zehdenick 16792 Wesendorf 16798 Steinförde 16798 Altthymen 16798 Himmelpfort 16798 Fürstenberg/Havel 16798 Zootzen 16816 Neuruppin 16818 Walsleben 16818 Dabergotz 16818 Storbeck-Frankendorf 16818 Temnitzquell 16818 Märkisch Linden 16831 Rheinsberg 16833 Fehrbellin 16835 Rüthnick 16835 Lindow (Mark) 16835 Herzberg 16845 Großderschau 16845 Temnitztal 16845 Neustadt (Dosse) 16845 Märkisch Linden 16845 Breddin 16845 Dreetz 16845 Sieversdorf-Hohenofen 16845 Stüdenitz-Schönermark 16845 Zernitz-Lohm 16866 Groß Welle 16866 Gumtow 16866 Granzow 16866 Kolrep 16866 Demerthin 16866 Görike 16866 Döllen 16866 Dannenwalde 16866 Schönhagen 16866 Wutike 16866 Kunow 16866 Vehlin 16866 Barenthin 16866 Vehlow 16866 Schrepkow 16866 Kyritz 16868 Wusterhausen (Dosse) 16909 Wittstock/Dosse 16909 Heiligengrabe 16928 Tüchen 16928 Groß Pankow 16928 Groß Woltersdorf 16928 Kuhbier 16928 Falkenhagen 16928 Buchholz 16928 Sadenbeck 16928 Kehrberg 16928 Steffenshagen 16928 Wilmersdorf 16928 Klein Woltersdorf 16928 Beveringen 16928 Kuhsdorf 16928 Schönebeck 16928 Hoppenrade 16928 Helle 16928 Mesendorf 16928 Boddin-Langnow 16928 Pritzwalk 16928 Lindenberg 16928 Kemnitz 16928 Vettin 16928 Alt Krüssow 16928 Gerdshagen 16945 Meyenburg 16945 Marienfließ 16945 Kümmernitztal 16945 Halenbeck-Rohlsdorf 16949 Putlitz 16949 Triglitz 17033 Neubrandenburg 17034 Neubrandenburg 17036 Neubrandenburg 17039 Neuenkirchen 17039 Neverin 17039 Zirzow 17039 Neddemin 17039 Warlin 17039 Sponholz 17039 Staven 17039 Wulkenzin 17039 Trollenhagen 17039 Woggersin 17039 Brunn 17039 Blankenhof 17039 Beseritz 17087 Altentreptow 17089 Grapzow 17089 Siedenbollentin 17089 Gnevkow 17089 Burow 17089 Bartow 17089 Breest 17089 Grischow 17089 Golchen 17089 Werder 17089 Gültz 17091 Groß Teetzleben 17091 Knorrendorf 17091 Wolde 17091 Rosenow 17091 Tützpatz 17091 Kriesow 17091 Altenhagen 17091 Wildberg 17091 Pripsleben 17091 Breesen 17091 Röckwitz 17091 Mölln 17094 Cammin 17094 Burg Stargard 17094 Cölpin 17094 Lindetal 17094 Groß Nemerow 17094 Holldorf 17094 Pragsdorf 17094 Teschendorf 17098 Friedland 17099 Brohm 17099 Eichhorst 17099 Schwanbeck 17099 Glienke 17099 Datzetal 17099 Genzkow 17109 Demmin 17111 Utzedel 17111 Beestland 17111 Sanzkow 17111 Wotenick 17111 Kletzin 17111 Meesiger 17111 Hohenbollentin 17111 Warrenzin 17111 Quitzerow 17111 Teusin 17111 Kentzlin 17111 Sommersdorf 17111 Borrentin 17111 Beggerow 17111 Lindenberg 17111 Hohenmocker 17111 Sarow 17111 Schönfeld 17111 Upost 17111 Hohenbrünzow 17111 Nossendorf 17111 Siedenbrünzow 17121 Sassen 17121 Loitz 17121 Trantow 17121 Görmin 17121 Wüstenfelde 17121 Düvier 17126 Jarmen 17129 Plötz 17129 Kruckow 17129 Alt Tellin 17129 Schmarsow 17129 Daberkow 17129 Tutow 17129 Bentzin 17129 Völschow 17139 Duckow 17139 Faulenrost 17139 Basedow 17139 Remplin 17139 Gielow 17139 Kummerow 17139 Malchin 17139 Schwinkendorf 17153 Grammentin 17153 Reuterstadt Stavenhagen 17153 Briggow 17153 Bredenfelde 17153 Gülzow 17153 Zettemin 17153 Kittendorf 17153 Ritzerow 17153 Ivenack 17153 Jürgenstorf 17154 Neukalen 17159 Wagun 17159 Zarnekow 17159 Brudersdorf 17159 Stubbendorf 17159 Dargun 17166 Teterow 17166 Dalkendorf 17166 Groß Wokern 17166 Bülow 17166 Dahmen 17166 Bristow 17166 Hohen Demzin 17166 Groß Roge 17166 Alt Sührkow 17168 Thürkow 17168 Neu Heinde 17168 Poggelow 17168 Lelkendorf 17168 Sukow-Marienhof 17168 Matgendorf 17168 Warnkenhagen 17168 Remlin 17168 Levitzow 17168 Jördenstorf 17168 Groß Wüstenfelde 17168 Prebberede 17179 Lühburg 17179 Boddin 17179 Walkendorf 17179 Wasdow 17179 Altkalen 17179 Behren-Lübchin 17179 Gnoien 17179 Finkenthal 17192 Alt Schönau 17192 Torgelow am See 17192 Groß Dratow 17192 Waren (Müritz) 17192 Schloen 17192 Klink 17192 Groß Plasten 17192 Groß Gievitz 17192 Kargow 17192 Varchentin 17192 Lansen 17194 Hinrichshagen 17194 Lupendorf 17194 Neu Gaarz 17194 Vollrathsruhe 17194 Jabel 17194 Grabowhöfe 17194 Moltzow 17194 Vielist 17194 Hohen Wangelin 17194 Klocksin 17207 Bollewick 17207 Röbel/Müritz 17207 Kambs 17207 Ludorf 17207 Gotthun 17207 Groß Kelle 17209 Vipperow 17209 Rogeez 17209 Sietow 17209 Melz 17209 Zislow 17209 Priborn 17209 Bütow 17209 Leizen 17209 Walow 17209 Grabow-Below 17209 Fincken 17209 Satow 17209 Massow 17209 Jaebetz 17209 Stuer 17209 Zepkow 17209 Minzow 17209 Kieve 17209 Altenhof 17209 Wredenhagen 17209 Buchholz 17213 Göhren-Lebbin 17213 Kogel 17213 Penkow 17213 Malchow 17213 Adamshoffnung 17213 Grüssow 17213 Lexow 17214 Silz 17214 Alt Schwerin 17214 Nossentiner Hütte 17217 Alt Rehse 17217 Lapitz 17217 Klein Lukow 17217 Mollenstorf 17217 Groß Vielen 17217 Krukow 17217 Puchow 17217 Mallin 17217 Penzlin 17219 Marihn 17219 Möllenhagen 17219 Groß Flotow 17219 Ankershagen 17235 Neustrelitz 17237 Carpin 17237 Grünow 17237 Wokuhl-Dabelow 17237 Blankensee 17237 Kratzeburg 17237 Blumenholz 17237 Godendorf 17237 Userin 17237 Möllenbeck 17237 Klein Vielen 17237 Watzkendorf 17237 Hohenzieritz 17248 Rechlin 17248 Lärz 17252 Diemitz 17252 Mirow 17252 Schwarz 17252 Roggentin 17255 Wustrow 17255 Wesenberg 17255 Priepert 17258 Feldberger Seenlandschaft 17259 Feldberger Seenlandschaft 17268 Gerswalde 17268 Petznick 17268 Hammelspring 17268 Boitzenburger Land 17268 Flieth-Stegelitz 17268 Temmen-Ringenwalde 17268 Densow 17268 Grunewald 17268 Röddelin 17268 Vietmannsdorf 17268 Templin 17268 Klosterwalde 17268 Gandenitz 17268 Herzfelde 17268 Beutel 17268 Milmersdorf 17268 Mittenwalde 17268 Groß Dölln 17268 Gollin 17268 Storkow 17279 Lychen 17291 Carmzow-Wallmow 17291 Prenzlau 17291 Göritz 17291 Schenkenberg 17291 Uckerfelde 17291 Randowtal 17291 Oberuckersee 17291 Grünow 17291 Gramzow 17291 Schönfeld 17291 Nordwestuckermark 17309 Krugsdorf 17309 Papendorf 17309 Fahrenwalde 17309 Pasewalk 17309 Marienthal 17309 Nieden 17309 Viereck 17309 Belling 17309 Damerow 17309 Zerrenthin 17309 Jatznick 17309 Züsedom 17309 Rollwitz 17309 Polzow 17309 Schönwalde 17309 Koblentz 17309 Brietzig 17321 Plöwen 17321 Ramin 17321 Bergholz 17321 Glashütte 17321 Löcknitz 17321 Rothenklempenow 17322 Glasow 17322 Pampow 17322 Rossow 17322 Grambow 17322 Mewegen 17322 Blankensee 17322 Bismark 17322 Boock 17322 Lebehn 17326 Brüssow 17328 Wollin 17328 Penkun 17329 Krackow 17329 Nadrensee 17335 Strasburg 17337 Uckerland 17337 Klein Luckow 17337 Groß Luckow 17337 Galenbeck 17337 Blumenhagen 17337 Schönhausen 17348 Neu Käbelich 17348 Lindetal 17348 Groß Daberkow 17348 Mildenitz 17348 Petersdorf 17348 Woldegk 17349 Neetzka 17349 Kublank 17349 Helpt 17349 Schönbeck 17349 Groß Miltzow 17349 Lindetal 17349 Voigtsdorf 17358 Hammer 17358 Torgelow-Holländerei 17358 Torgelow 17367 Eggesin 17373 Ueckermünde 17375 Ahlbeck 17375 Hintersee 17375 Mönkebude 17375 Grambin 17375 Meiersberg 17375 Liepgarten 17375 Leopoldshagen 17375 Luckow 17375 Vogelsang-Warsin 17375 Altwarp 17379 Wilhelmsburg 17379 Neuendorf A 17379 Rothemühl 17379 Lübs 17379 Wietstock 17379 Heinrichswalde 17379 Heinrichsruh 17379 Altwigshagen 17379 Ferdinandshof 17389 Anklam 17390 Groß Polzin 17390 Schmatzin 17390 Murchin 17390 Rubkow 17390 Klein Bünzow 17390 Ziethen 17391 Postlow 17391 Iven 17391 Liepen 17391 Steinmocker 17391 Medow 17391 Krien 17391 Nerdin 17391 Neuendorf B 17391 Krusenfelde 17391 Neetzow 17391 Stolpe 17392 Pelsin 17392 Blesewitz 17392 Zinzow 17392 Spantekow 17392 Neuenkirchen 17392 Boldekow 17392 Butzow 17392 Putzar 17392 Drewelow 17392 Japenzin 17392 Sarnow 17398 Rossin 17398 Rathebur 17398 Bargischow 17398 Ducherow 17398 Löwitz 17398 Schwerinsburg 17398 Bugewitz 17398 Neu Kosenow 17406 Stolpe auf Usedom 17406 Rankwitz 17406 Usedom 17406 Morgenitz 17419 Garz 17419 Dargen 17419 Ahlbeck 17419 Zirchow 17419 Kamminke 17419 Korswandt 17424 Heringsdorf 17429 Mellenthin 17429 Benz 17429 Pudagla 17429 Bansin 17429 Neppermin 17438 Wolgast 17440 Kröslin 17440 Zemitz 17440 Buggenhagen 17440 Hohendorf 17440 Pulow 17440 Buddenhagen 17440 Krummin 17440 Lassan 17440 Sauzin 17440 Lütow 17440 Groß Ernsthof 17449 Peenemünde 17449 Karlshagen 17449 Mölschow 17449 Trassenheide 17454 Zinnowitz 17459 Zempin 17459 Koserow 17459 Loddin 17459 Ückeritz 17489 Greifswald 17491 Greifswald 17493 Greifswald 17495 Ranzin 17495 Lühmannsdorf 17495 Züssow 17495 Karlsburg 17495 Groß Kiesow 17495 Wrangelsburg 17498 Wackerow 17498 Dargelin 17498 Behrenhoff 17498 Levenhagen 17498 Weitenhagen 17498 Mesekenhagen 17498 Neuenkirchen 17498 Hinrichshagen 17498 Diedrichshagen 17498 Dersekow 17506 Kölzin 17506 Lüssow 17506 Breechen 17506 Bandelin 17506 Gribow 17506 Gützkow 17506 Kammin 17509 Wusterhusen 17509 Neu Boltenhagen 17509 Kemnitz 17509 Hanshagen 17509 Rubenow 17509 Brünzow 17509 Lubmin 17509 Katzow 17509 Loissin 18055 Rostock 18057 Rostock 18059 Rostock 18059 Ziesendorf 18059 Pölchow 18059 Papendorf 18069 Rostock 18069 Lambrechtshagen 18106 Rostock 18107 Elmenhorst-Lichtenhagen 18107 Rostock 18109 Rostock 18119 Rostock 18146 Rostock 18147 Rostock 18181 Seeheilbad Graal-Müritz 18182 Rövershagen 18182 Blankenhagen 18182 Mönchhagen 18182 Bentwisch 18182 Gelbensande 18184 Poppendorf 18184 Hohenfelde 18184 Broderstorf 18184 Klein Kussewitz 18184 Thulendorf 18184 Steinfeld 18184 Mandelshagen 18184 Roggentin 18190 Sanitz 18195 Grammow 18195 Selpin 18195 Zarnewanz 18195 Cammin 18195 Tessin 18195 Thelkow 18195 Gnewitz 18195 Stubbendorf 18195 Nustrow 18196 Dummerstorf 18196 Prisannewitz 18196 Kavelstorf 18196 Damm 18196 Kessin 18196 Lieblingshof 18198 Kritzmow 18198 Stäbelow 18209 Steffenshagen 18209 Bad Doberan 18209 Wittenbeck 18209 Reddelich 18209 Bartenshagen-Parkentin 18211 Retschow 18211 Börgerende-Rethwisch 18211 Nienhagen 18211 Admannshagen-Bargeshagen 18225 Kühlungsborn 18230 Biendorf 18230 Bastorf 18230 Rerik 18230 Jennewitz 18233 Alt Bukow 18233 Karin 18233 Kamin 18233 Neubukow 18233 Krempin 18233 Pepelow 18233 Rakow 18233 Ravensberg 18233 Westenbrügge 18233 Kirch Mulsow 18236 Altenhagen 18236 Kröpelin 18236 Schmadebeck 18239 Bölkow 18239 Radegast 18239 Heiligenhagen 18239 Satow 18239 Hanstorf 18239 Reinshagen 18246 Klein Belitz 18246 Baumgarten 18246 Jürgenshagen 18246 Steinhagen 18246 Zepelin 18246 Neuendorf 18246 Bützow 18246 Rühn 18249 Tarnow 18249 Dreetz 18249 Bernitt 18249 Penzin 18249 Warnow 18258 Wiendorf 18258 Rukieten 18258 Benitz 18258 Schwaan 18258 Bröbberow 18258 Kassow 18258 Vorbeck 18273 Güstrow 18276 Mistorf 18276 Gülzow 18276 Zehna 18276 Kuhs 18276 Recknitz 18276 Bülow 18276 Mühl Rosin 18276 Reimershagen 18276 Glasewitz 18276 Lohmen 18276 Groß Schwiesow 18276 Gutow 18276 Klein Upahl 18276 Prüzen 18276 Lüssow 18279 Lalendorf 18279 Langhagen 18279 Plaaz 18279 Wattmannshagen 18292 Dobbin-Linstow 18292 Hoppenrade 18292 Kuchelmiß 18292 Bellin 18292 Krakow am See 18299 Diekhof 18299 Wardow 18299 Dolgen 18299 Pölitz 18299 Hohen Sprenz 18299 Laage 18299 Weitendorf 18299 Alt Kätwin 18299 Liessow 18311 Ribnitz-Damgarten 18314 Lüdershagen 18314 Kenz-Küstrow 18314 Bartelshagen II 18314 Divitz-Spoldershagen 18314 Löbnitz 18317 Saal 18320 Schlemmin 18320 Trinwillershagen 18320 Ahrenshagen-Daskow 18320 Dettmannsdorf 18334 Breesen 18334 Schulenberg 18334 Semlow 18334 Langsdorf 18334 Eixen 18334 Böhlendorf 18334 Bad Sülze 18337 Marlow 18347 Wustrow 18347 Dierhagen 18347 Ahrenshoop 18356 Pruchten 18356 Fuhlendorf 18356 Barth 18374 Zingst 18375 Wieck 18375 Prerow 18375 Born am Darß 18435 Stralsund 18437 Stralsund 18439 Stralsund 18442 Kummerow 18442 Neu Bartelshagen 18442 Jakobsdorf 18442 Lüssow 18442 Groß Kordshagen 18442 Wendorf 18442 Niepars 18442 Pantelitz 18442 Steinhagen 18445 Prohn 18445 Groß Mohrdorf 18445 Kramerhof 18445 Klausdorf 18445 Altenpleen 18445 Preetz 18461 Richtenberg 18461 Gremersdorf-Buchholz 18461 Weitenhagen 18461 Franzburg 18461 Millienhagen-Oebelitz 18465 Hugoldsdorf 18465 Drechow 18465 Tribsees 18469 Karnin 18469 Velgast 18507 Grimmen 18510 Elmenhorst 18510 Stoltenhagen 18510 Zarrendorf 18510 Wittenhagen 18510 Papenhagen 18510 Behnkendorf 18513 Gransebieth 18513 Wendisch Baggendorf 18513 Grammendorf 18513 Splietsdorf 18513 Glewitz 18513 Deyelsdorf 18516 Süderholz 18519 Brandshagen 18519 Horst 18519 Miltzow 18519 Wilmshagen 18519 Reinberg 18519 Kirchdorf 18528 Lietzow 18528 Bergen auf Rügen 18528 Thesenvitz 18528 Buschvitz 18528 Patzig 18528 Zirkow 18528 Sehlen 18528 Parchtitz 18528 Ralswiek 18528 Rappin 18546 Sassnitz 18551 Sagard 18551 Lohme 18551 Glowe 18556 Dranske 18556 Putgarten 18556 Altenkirchen 18556 Wiek 18556 Breege 18565 Insel Hiddensee 18569 Schaprode 18569 Gingst 18569 Ummanz 18569 Trent 18569 Kluis 18569 Neuenkirchen 18573 Altefähr 18573 Dreschvitz 18573 Rambin 18573 Samtens 18574 Poseritz 18574 Garz 18574 Gustow 18574 Karnitz 18574 Zudar 18581 Putbus 18586 Middelhagen 18586 Thiessow 18586 Baabe 18586 Göhren 18586 Lancken-Granitz 18586 Gager 18586 Sellin 18609 Binz 19053 Schwerin 19055 Schwerin 19057 Schwerin 19059 Schwerin 19061 Schwerin 19063 Schwerin 19065 Gneven 19065 Pinnow 19065 Godern 19065 Raben Steinfeld 19067 Leezen 19067 Retgendorf 19067 Langen Brütz 19067 Rubow 19067 Cambs 19069 Zickhusen 19069 Pingelshagen 19069 Böken 19069 Alt Meteln 19069 Seehof 19069 Klein Trebbow 19071 Dalberg-Wendelstorf 19071 Brüsewitz 19071 Grambow 19071 Cramonshagen 19073 Klein Rogahn 19073 Wittenförden 19073 Schossin 19073 Stralendorf 19073 Dümmer 19073 Zülow 19075 Warsow 19075 Pampow 19075 Holthusen 19077 Rastow 19077 Sülstorf 19077 Lübesse 19077 Uelitz 19079 Sukow 19079 Goldenstädt 19079 Banzkow 19086 Plate 19089 Ruthenbeck 19089 Bülow 19089 Gädebehn 19089 Crivitz 19089 Barnin 19089 Tramm 19089 Demen 19089 Göhren 19089 Zapel 19089 Wessin 19205 Pokrent 19205 Kneese 19205 Gadebusch 19205 Roggendorf 19205 Rögnitz 19205 Veelböken 19205 Mühlen Eichsen 19205 Dragun 19205 Krembz 19209 Lützow 19209 Badow 19209 Perlin 19209 Renzow 19209 Gottesgabe 19217 Wedendorf 19217 Groß Molzahn 19217 Rieps 19217 Nesow 19217 Holdorf 19217 Demern 19217 Bülow 19217 Rehna 19217 Thandorf 19217 Köchelstorf 19217 Löwitz 19217 Dechow 19217 Schlagsdorf 19217 Vitense 19217 Utecht 19217 Carlow 19217 Groß Rünz 19230 Kuhstorf 19230 Moraas 19230 Picher 19230 Alt Zachun 19230 Hülseburg 19230 Kirch Jesar 19230 Belsch 19230 Bandenitz 19230 Hoort 19230 Pätow 19230 Pritzier 19230 Bobzin 19230 Bresegard 19230 Hagenow 19230 Setzin 19230 Warlitz 19230 Strohkirchen 19230 Redefin 19230 Gammelin 19230 Groß Krams 19230 Toddin 19243 Parum 19243 Luckwitz 19243 Karft 19243 Tessin bei Wittenburg 19243 Dreilützow 19243 Dodow 19243 Körchow 19243 Waschow 19243 Drönnewitz 19243 Wittenburg 19243 Boddin 19243 Lehsen 19246 Valluhn 19246 Neuhof 19246 Zarrentin 19246 Lüttow 19246 Camin 19246 Kogel 19246 Lassahn 19246 Bantin 19249 Gößlow 19249 Jessenitz 19249 Lübtheen 19249 Garlitz 19258 Boizenburg 19258 Gresse 19258 Wiebendorf 19258 Klein Bengerstorf 19258 Schwanheide 19258 Tessin bei Boizenburg 19258 Nostorf 19258 Gallin 19258 Neu Gülze 19258 Greven 19258 Besitz 19260 Vellahn 19260 Rodenwalde 19260 Bennin 19260 Dersenow 19260 Banzin 19260 Kloddram 19273 Teldau 19273 Melkof 19273 Brahlstorf 19273 Amt Neuhaus 19288 Lüblow 19288 Fahrbinde 19288 Göhlen 19288 Alt Krenzlin 19288 Leussow 19288 Wöbbelin 19288 Kummer 19288 Ludwigslust 19288 Groß Laasch 19288 Warlow 19288 Glaisin 19294 Grebs 19294 Malliß 19294 Malk Göhren 19294 Gorlosen 19294 Bresegard 19294 Neu Kaliß 19294 Dadow 19294 Eldena 19294 Karenz 19294 Karstädt 19294 Krinitz 19294 Niendorf an der Rögnitz 19300 Grabow 19300 Milow 19300 Kremmin 19300 Balow 19300 Muchow 19300 Werle 19300 Prislich 19300 Zierzow 19300 Möllenbeck 19300 Steesow 19303 Woosmer 19303 Heidhof 19303 Dömitz 19303 Tewswoos 19303 Rüterberg 19303 Vielank 19303 Polz 19306 Neustadt-Glewe 19306 Brenz 19306 Blievenstorf 19309 Besandten 19309 Eldenburg 19309 Lanz 19309 Mellen 19309 Wootz 19309 Lenzen (Elbe) 19322 Wittenberge 19322 Rühstädt 19322 Weisen 19322 Cumlosen 19322 Breese 19322 Groß Breese 19336 Viesecke 19336 Bad Wilsnack 19336 Legde/Quitzöbel 19336 Kletzke 19339 Netzow 19339 Bendelin 19339 Glöwen 19348 Pirow 19348 Berge 19348 Perleberg 19348 Retzin 19348 Nebelin 19348 Wolfshagen 19348 Kleinow 19348 Gülitz-Reetz 19348 Baek 19348 Klein Gottschow 19348 Krampfer 19357 Dambeck 19357 Garlin 19357 Pröttlin 19357 Karstädt 19357 Boberow 19357 Mankmuß 19370 Parchim 19372 Stralendorf 19372 Karrenzin 19372 Groß Godems 19372 Matzlow-Garwitz 19372 Rom 19372 Ziegendorf 19372 Stolpe 19372 Brunow 19372 Spornitz 19372 Herzfeld 19374 Severin 19374 Raduhn 19374 Grebbin 19374 Groß Niendorf 19374 Friedrichsruhe 19374 Zölkow 19374 Damm 19374 Domsühl 19374 Klinken 19374 Mestlin 19374 Herzberg 19376 Suckow 19376 Siggelkow 19376 Tessenow 19376 Marnitz 19386 Broock 19386 Kreien 19386 Passow 19386 Granzin 19386 Lutheran 19386 Gischow 19386 Gallin-Kuppentin 19386 Werder 19386 Kritzow 19386 Karbow-Vietlübbe 19386 Lübz 19386 Wahlstorf 19395 Plau am See 19395 Karow 19395 Retzow 19395 Wendisch Priborn 19395 Gnevsdorf 19395 Ganzlin 19395 Barkow 19395 Plauerhagen 19399 Neu Poserin 19399 Dobbertin 19399 Techentin 19399 Diestelow 19399 Goldberg 19399 Wendisch Waren 19399 Langenhagen 19406 Dabel 19406 Hohen Pritz 19406 Witzin 19406 Borkow 19406 Kobrow 19406 Sternberg 19406 Groß Görnow 19406 Mustin 19412 Blankenberg 19412 Langen Jarchow 19412 Weitendorf 19412 Kuhlen 19412 Wendorf 19412 Zahrensdorf 19412 Brüel 19417 Bibow 19417 Groß Labenz 19417 Ventschow 19417 Jesendorf 19417 Warin 20095 Hamburg 20095 Hampuri 20097 Hamburg 20097 Hampuri 20099 Hamburg 20099 Hampuri 20144 Hamburg 20144 Hampuri 20146 Hamburg 20146 Hampuri 20148 Hamburg 20148 Hampuri 20149 Hamburg 20149 Hampuri 20249 Hamburg 20249 Hampuri 20251 Hamburg 20251 Hampuri 20253 Hamburg 20253 Hampuri 20255 Hamburg 20255 Hampuri 20257 Hamburg 20257 Hampuri 20259 Hamburg 20259 Hampuri 20354 Hamburg 20354 Hampuri 20355 Hamburg 20355 Hampuri 20357 Hamburg 20357 Hampuri 20359 Hamburg 20359 Hampuri 20457 Hamburg 20457 Hampuri 20459 Hamburg 20459 Hampuri 20535 Hamburg 20535 Hampuri 20537 Hamburg 20537 Hampuri 20539 Hamburg 20539 Hampuri 21029 Hamburg 21029 Hampuri 21031 Hamburg 21031 Hampuri 21033 Hamburg 21033 Hampuri 21035 Hamburg 21035 Hampuri 21037 Hamburg 21037 Hampuri 21039 Hamburg 21039 Hampuri 21039 Börnsen 21039 Escheburg 21073 Hamburg 21073 Hampuri 21075 Hamburg 21075 Hampuri 21077 Hamburg 21077 Hampuri 21079 Hamburg 21079 Hampuri 21107 Hamburg 21107 Hampuri 21109 Hamburg 21109 Hampuri 21129 Hamburg 21129 Hampuri 21147 Hamburg 21147 Hampuri 21149 Hamburg 21149 Hampuri 21217 Seevetal 21218 Seevetal 21220 Seevetal 21224 Rosengarten 21227 Bendestorf 21228 Harmstorf 21244 Buchholz in der Nordheide 21255 Königsmoor 21255 Tostedt 21255 Dohren 21255 Kakenstorf 21255 Wistedt 21256 Handeloh 21258 Heidenau 21259 Otter 21261 Welle 21266 Jesteburg 21271 Asendorf 21271 Hanstedt 21272 Egestorf 21274 Undeloh 21279 Wenzendorf 21279 Hollenstedt 21279 Drestedt 21279 Appel 21335 Lüneburg 21337 Lüneburg 21339 Lüneburg 21354 Bleckede 21357 Barum 21357 Wittorf 21357 Bardowick 21358 Mechtersen 21360 Vögelsen 21365 Adendorf 21368 Dahlenburg 21368 Dahlem 21368 Boitze 21369 Nahrendorf 21371 Tosterglope 21376 Gödenstorf 21376 Eyendorf 21376 Salzhausen 21376 Garlstorf 21379 Lüdersburg 21379 Rullstorf 21379 Scharnebeck 21379 Echem 21380 Artlenburg 21382 Brietlingen 21385 Amelinghausen 21385 Rehlingen 21385 Oldendorf (Luhe) 21386 Betzendorf 21388 Soderstorf 21391 Dachtmissen 21391 Reppenstedt 21394 Westergellersen 21394 Kirchgellersen 21394 Heiligenthal 21394 Südergellersen 21395 Tespe 21397 Barendorf 21397 Vastorf 21398 Neetze 21400 Reinstorf 21401 Thomasburg 21403 Wendisch Evern 21406 Barnstedt 21406 Melbeck 21407 Deutsch Evern 21409 Embsen 21423 Drage 21423 Winsen (Luhe) 21435 Stelle 21436 Marschacht 21438 Brackel 21439 Marxen 21441 Garstedt 21442 Toppenstedt 21444 Vierhöfen 21445 Wulfsen 21447 Handorf 21449 Radbruch 21465 Wentorf bei Hamburg 21465 Reinbek 21481 Buchhorst 21481 Schnakenbek 21481 Lauenburg/Elbe 21483 Lütau 21483 Krüzen 21483 Lanze 21483 Wangelau 21483 Juliusburg 21483 Gülzow 21483 Basedow 21483 Dalldorf 21483 Krukow 21493 Groß Pampau 21493 Fuhlenhagen 21493 Schretstaken 21493 Möhnsen 21493 Grabau 21493 Sahms 21493 Elmenhorst 21493 Basthorst 21493 Mühlenrade 21493 Grove 21493 Schwarzenbek 21493 Talkau 21493 Havekost 21502 Worth 21502 Geesthacht 21502 Hamwarde 21502 Wiershop 21509 Glinde 21514 Kankelau 21514 Göttin 21514 Büchen 21514 Bröthen 21514 Siebeneichen 21514 Fitzen 21514 Witzeeze 21514 Roseburg 21514 Klein Pampau 21514 Hornbek 21514 Güster 21514 Langenlehsten 21516 Woltersdorf 21516 Schulendorf 21516 Tramm 21516 Müssen 21521 Aumühle 21521 Wohltorf 21521 Dassendorf 21522 Hittbergen 21522 Hohnstorf (Elbe) 21524 Brunstorf 21526 Hohenhorn 21527 Kollow 21529 Kröppelshagen-Fahrendorf 21614 Buxtehude 21629 Neu Wulmstorf 21635 Jork 21640 Nottensdorf 21640 Neuenkirchen 21640 Bliedersdorf 21640 Horneburg 21641 Apensen 21643 Beckdorf 21644 Sauensiek 21646 Halvesbostel 21647 Moisburg 21649 Regesbostel 21680 Stade 21682 Stade 21683 Stade 21684 Stade 21684 Agathenburg 21698 Harsefeld 21698 Brest 21698 Bargstedt 21702 Ahlerstedt 21706 Drochtersen 21709 Burweg 21709 Himmelpforten 21709 Düdenbüttel 21710 Engelschoff 21712 Großenwörden 21714 Hammah 21717 Deinste 21717 Fredenbeck 21720 Steinkirchen 21720 Guderhandviertel 21720 Mittelnkirchen 21720 Grünendeich 21723 Hollern-Twielenfleth 21726 Kranenburg 21726 Oldendorf 21726 Heinbockel 21727 Estorf 21729 Freiburg (Elbe) 21730 Balje 21732 Krummendeich 21734 Oederquart 21737 Wischhafen 21739 Dollern 21745 Hemmoor 21755 Hechthausen 21756 Osten 21762 Osterbruch 21762 Otterndorf 21763 Neuenkirchen 21765 Nordleda 21769 Hollnseth 21769 Armstorf 21769 Lamstedt 21770 Mittelstenahe 21772 Stinstedt 21775 Odisheim 21775 Ihlienworth 21775 Steinau 21776 Wanna 21781 Cadenberge 21782 Bülkau 21784 Geversdorf 21785 Belum 21785 Neuhaus an der Oste 21787 Oberndorf 21789 Wingst 22041 Hamburg 22041 Hampuri 22043 Hamburg 22043 Hampuri 22045 Hamburg 22045 Hampuri 22047 Hamburg 22047 Hampuri 22049 Hamburg 22049 Hampuri 22081 Hamburg 22081 Hampuri 22083 Hamburg 22083 Hampuri 22085 Hamburg 22085 Hampuri 22087 Hamburg 22087 Hampuri 22089 Hamburg 22089 Hampuri 22111 Hamburg 22111 Hampuri 22113 Hamburg 22113 Hampuri 22113 Oststeinbek 22115 Hamburg 22115 Hampuri 22117 Hamburg 22117 Hampuri 22119 Hamburg 22119 Hampuri 22143 Hamburg 22143 Hampuri 22145 Hamburg 22145 Hampuri 22145 Braak 22145 Stapelfeld 22147 Hamburg 22147 Hampuri 22149 Hamburg 22149 Hampuri 22159 Hamburg 22159 Hampuri 22175 Hamburg 22175 Hampuri 22177 Hamburg 22177 Hampuri 22179 Hamburg 22179 Hampuri 22297 Hamburg 22297 Hampuri 22299 Hamburg 22299 Hampuri 22301 Hamburg 22301 Hampuri 22303 Hamburg 22303 Hampuri 22305 Hamburg 22305 Hampuri 22307 Hamburg 22307 Hampuri 22309 Hamburg 22309 Hampuri 22335 Hamburg 22335 Hampuri 22337 Hamburg 22337 Hampuri 22339 Hamburg 22339 Hampuri 22359 Hamburg 22359 Hampuri 22391 Hamburg 22391 Hampuri 22393 Hamburg 22393 Hampuri 22395 Hamburg 22395 Hampuri 22397 Hamburg 22397 Hampuri 22399 Hamburg 22399 Hampuri 22415 Hamburg 22415 Hampuri 22417 Hamburg 22417 Hampuri 22419 Hamburg 22419 Hampuri 22453 Hamburg 22453 Hampuri 22455 Hamburg 22455 Hampuri 22457 Hamburg 22457 Hampuri 22459 Hamburg 22459 Hampuri 22523 Hamburg 22523 Hampuri 22525 Hamburg 22525 Hampuri 22527 Hamburg 22527 Hampuri 22529 Hamburg 22529 Hampuri 22547 Hamburg 22547 Hampuri 22549 Hamburg 22549 Hampuri 22559 Hamburg 22559 Hampuri 22587 Hamburg 22587 Hampuri 22589 Hamburg 22589 Hampuri 22605 Hamburg 22605 Hampuri 22607 Hamburg 22607 Hampuri 22609 Hamburg 22609 Hampuri 22761 Hamburg 22761 Hampuri 22763 Hamburg 22763 Hampuri 22765 Hamburg 22765 Hampuri 22767 Hamburg 22767 Hampuri 22769 Hamburg 22769 Hampuri 22844 Norderstedt 22846 Norderstedt 22848 Norderstedt 22850 Norderstedt 22851 Norderstedt 22869 Schenefeld 22880 Wedel 22885 Barsbüttel 22889 Tangstedt 22926 Ahrensburg 22927 Großhansdorf 22929 Hamfelde in Holstein 22929 Hamfelde in Lauenburg 22929 Rausdorf 22929 Köthel 22929 Delingsdorf 22929 Kasseburg 22929 Schönberg 22929 Hammoor 22941 Bargteheide 22941 Jersbek 22946 Hohenfelde 22946 Trittau 22946 Brunsbek 22946 Grande 22946 Dahmker 22946 Großensee 22949 Ammersbek 22952 Lütjensee 22955 Hoisdorf 22956 Grönwohld 22958 Kuddewörde 22959 Linau 22962 Siek 22964 Steinburg 22965 Todendorf 22967 Tremsbüttel 22969 Witzhave 23552 Lübeck 23554 Lübeck 23556 Lübeck 23558 Lübeck 23560 Lübeck 23562 Lübeck 23564 Lübeck 23566 Lübeck 23568 Lübeck 23569 Lübeck 23570 Lübeck 23611 Bad Schwartau 23617 Stockelsdorf 23619 Rehhorst 23619 Mönkhagen 23619 Zarpen 23619 Hamberge 23619 Heilshoop 23619 Badendorf 23623 Ahrensbök 23626 Ratekau 23627 Groß Grönau 23627 Groß Sarau 23628 Krummesse 23628 Klempau 23669 Timmendorfer Strand 23683 Scharbeutz 23684 Scharbeutz 23701 Süsel 23701 Eutin 23714 Kirchnüchel 23714 Malente 23715 Bosau 23717 Kasseedorf 23719 Glasau 23730 Schashagen 23730 Neustadt in Holstein 23730 Sierksdorf 23730 Altenkrempe 23738 Lensahn 23738 Beschendorf 23738 Manhagen 23738 Kabelhorst 23738 Riepsdorf 23738 Harmsdorf 23738 Damlos 23743 Grömitz 23744 Schönwalde am Bungsberg 23746 Kellenhusen 23747 Dahme 23749 Grube 23758 Göhl 23758 Wangels 23758 Oldenburg in Holstein 23758 Gremersdorf 23769 Fehmarn 23774 Heiligenhafen 23775 Großenbrode 23777 Heringsdorf 23779 Neukirchen 23795 Stipsdorf 23795 Bad Segeberg 23795 Fahrenkrug 23795 Groß Rönnau 23795 Weede 23795 Negernbötel 23795 Mözen 23795 Högersdorf 23795 Schwissel 23795 Klein Rönnau 23795 Traventhal 23795 Klein Gladebrügge 23795 Schieren 23795 Schackendorf 23812 Wahlstedt 23813 Nehms 23813 Blunk 23815 Geschendorf 23815 Strukdorf 23815 Westerrade 23816 Neversdorf 23816 Groß Niendorf 23816 Leezen 23816 Bebensee 23818 Neuengörs 23820 Pronstorf 23821 Rohlstorf 23823 Seedorf 23824 Tensfeld 23824 Damsdorf 23826 Fredesdorf 23826 Bark 23826 Todesfelde 23827 Travenhorst 23827 Krems II 23827 Wensin 23829 Wittenborn 23829 Kükels 23843 Bad Oldesloe 23843 Travenbrück 23843 Rümpel 23843 Neritz 23845 Bahrenhof 23845 Wakendorf I 23845 Bühnsdorf 23845 Seth 23845 Grabau 23845 Oering 23845 Dreggers 23845 Itzstedt 23847 Lasbek 23847 Pölitz 23847 Westerau 23847 Steinhorst 23847 Schiphorst 23847 Schürensöhlen 23847 Bliestorf 23847 Rethwisch 23847 Sierksrade 23847 Kastorf 23847 Groß Boden 23847 Düchelsdorf 23847 Meddewade 23847 Stubben 23847 Grinau 23847 Siebenbäumen 23858 Feldhorst 23858 Reinfeld (Holstein) 23858 Barnitz 23858 Wesenberg 23858 Heidekamp 23860 Groß Schenkenberg 23860 Klein Wesenberg 23863 Nienwohld 23863 Kayhude 23863 Bargfeld-Stegen 23866 Nahe 23867 Sülfeld 23869 Elmenhorst 23879 Mölln 23881 Bälau 23881 Niendorf an der Stecknitz 23881 Koberg 23881 Borstorf 23881 Breitenfelde 23881 Alt Mölln 23881 Lankau 23883 Sterley 23883 Brunsmark 23883 Seedorf 23883 Klein Zecher 23883 Grambek 23883 Horst 23883 Lehmrade 23883 Hollenbek 23896 Walksfelde 23896 Ritzerau 23896 Poggensee 23896 Panten 23896 Nusse 23898 Labenz 23898 Sirksfelde 23898 Lüchow 23898 Wentorf 23898 Sandesneben 23898 Kühsen 23898 Klinkrade 23898 Duvensee 23899 Besenthal 23899 Gudow 23909 Mechow 23909 Fredeburg 23909 Giesensdorf 23909 Albsfelde 23909 Römnitz 23909 Bäk 23909 Ratzeburg 23911 Mustin 23911 Salem 23911 Pogeez 23911 Buchholz 23911 Ziethen 23911 Kulpin 23911 Kittlitz 23911 Harmsdorf 23911 Schmilau 23911 Einhaus 23911 Groß Disnack 23919 Berkenthin 23919 Göldenitz 23919 Niendorf 23919 Behlendorf 23919 Rondeshagen 23923 Schönberg 23923 Niendorf 23923 Roduchelstorf 23923 Groß Siemz 23923 Selmsdorf 23923 Lockwisch 23923 Lüdersdorf 23923 Menzendorf 23936 Bernstorf 23936 Upahl 23936 Papenhusen 23936 Mallentin 23936 Plüschow 23936 Warnow 23936 Testorf-Steinfort 23936 Grieben 23936 Hanshagen 23936 Roggenstorf 23936 Rüting 23936 Börzow 23936 Grevesmühlen 23942 Kalkhorst 23942 Pötenitz 23942 Harkensee 23942 Dassow 23946 Boltenhagen 23948 Moor-Rolofshagen 23948 Damshagen 23948 Klütz 23948 Elmenhorst 23948 Groß Walmstorf 23966 Wismar 23968 Barnekow 23968 Gramkow 23968 Zierow 23968 Wismar 23968 Gägelow 23970 Wismar 23970 Benz 23972 Schimm 23972 Dorf Mecklenburg 23972 Groß Stieten 23972 Metelsdorf 23972 Lübow 23974 Neuburg 23974 Hornstorf 23974 Krusenhagen 23974 Blowatz 23974 Boiensdorf 23992 Zurow 23992 Neukloster 23992 Glasin 23992 Lübberstorf 23992 Passee 23992 Züsow 23996 Groß Krankow 23996 Bobitz 23996 Beidendorf 23996 Bad Kleinen 23996 Hohen Viecheln 23999 Insel Poel 24103 Kiel 24105 Kiel 24106 Kiel 24107 Kiel 24107 Quarnbek 24107 Ottendorf 24109 Kiel 24109 Melsdorf 24111 Kiel 24113 Kiel 24113 Molfsee 24114 Kiel 24116 Kiel 24118 Kiel 24119 Kronshagen 24143 Kiel 24145 Kiel 24146 Kiel 24147 Kiel 24147 Klausdorf 24148 Kiel 24149 Kiel 24159 Kiel 24161 Altenholz 24211 Lehmkuhlen 24211 Kühren 24211 Pohnsdorf 24211 Honigsee 24211 Schellhorn 24211 Preetz 24211 Postfeld 24211 Rastorf 24211 Wahlstorf 24214 Neudorf-Bornstein 24214 Gettorf 24214 Tüttendorf 24214 Lindau 24214 Neuwittenbek 24214 Schinkel 24214 Noer 24217 Höhndorf 24217 Wisch 24217 Schönberg (Holstein) 24217 Krokau 24217 Krummbek 24217 Barsbek 24217 Stakendorf 24217 Fiefbergen 24217 Bendfeld 24220 Boksee 24220 Böhnhusen 24220 Flintbek 24220 Techelsdorf 24220 Schönhorst 24223 Raisdorf 24226 Heikendorf 24229 Strande 24229 Schwedeneck 24229 Dänischenhagen 24232 Schönkirchen 24232 Dobersdorf 24235 Laboe 24235 Lutterbek 24235 Stein 24235 Wendtorf 24235 Brodersdorf 24238 Lammershagen 24238 Selent 24238 Martensrade 24238 Mucheln 24239 Achterwehr 24241 Schierensee 24241 Sören 24241 Grevenkrug 24241 Schmalstede 24241 Reesdorf 24241 Blumenthal 24242 Felde 24244 Felm 24245 Klein Barkau 24245 Barmissen 24245 Kirchbarkau 24245 Großbarkau 24247 Rodenbek 24247 Mielkendorf 24248 Mönkeberg 24250 Warnau 24250 Nettelsee 24250 Löptin 24250 Bothkamp 24251 Osdorf 24253 Probsteierhagen 24253 Fahren 24253 Prasdorf 24253 Passade 24254 Rumohr 24256 Fargau-Pratjau 24256 Stoltenberg 24256 Schlesen 24257 Hohenfelde 24257 Schwartbuck 24257 Köhn 24259 Westensee 24306 Wittmoldt 24306 Lebrade 24306 Bösdorf 24306 Plön 24306 Rathjensdorf 24321 Hohwacht 24321 Klamp 24321 Lütjenburg 24321 Tröndel 24321 Giekau 24321 Panker 24321 Helmstorf 24321 Behrensdorf 24326 Dörnick 24326 Ascheberg 24326 Stocksee 24326 Dersau 24326 Nehmten 24326 Kalübbe 24327 Högsdorf 24327 Kletkamp 24327 Blekendorf 24329 Grebin 24329 Dannau 24329 Rantzau 24340 Altenhof 24340 Windeby 24340 Goosefeld 24340 Gammelby 24340 Eckernförde 24351 Damp 24351 Thumby 24354 Kosel 24354 Rieseby 24357 Fleckeby 24357 Hummelfeld 24357 Güby 24358 Hütten 24358 Bistensee 24358 Ascheffel 24360 Barkelsby 24361 Holzbunge 24361 Damendorf 24361 Haby 24361 Groß Wittensee 24361 Klein Wittensee 24363 Holtsee 24364 Holzdorf 24366 Loose 24367 Osterby 24369 Waabs 24376 Hasselberg 24376 Rabel 24376 Grödersby 24376 Kappeln 24376 Arnis 24392 Norderbrarup 24392 Dollrottfeld 24392 Wagersrott 24392 Brebel 24392 Kiesby 24392 Scheggerott 24392 Süderbrarup 24392 Nottfeld 24392 Boren 24392 Ekenis 24392 Saustrup 24395 Gelting 24395 Rabenholz 24395 Pommerby 24395 Nieby 24395 Stangheck 24395 Kronsgaard 24395 Niesgrau 24398 Winnemark 24398 Dörphof 24398 Karby 24398 Brodersby 24401 Böel 24402 Esgrus 24404 Maasholm 24405 Rügge 24405 Mohrkirch 24407 Rabenkirchen-Faulück 24407 Oersberg 24409 Stoltebüll 24534 Neumünster 24536 Tasdorf 24536 Neumünster 24537 Neumünster 24539 Neumünster 24558 Wakendorf II 24558 Henstedt-Ulzburg 24568 Kattendorf 24568 Kaltenkirchen 24568 Nützen 24568 Oersdorf 24568 Winsen 24576 Bad Bramstedt 24576 Hagen 24576 Hitzhusen 24576 Weddelbrook 24576 Bimöhlen 24576 Mönkloh 24582 Groß Buchwald 24582 Brügge 24582 Bissee 24582 Schönbek 24582 Hoffeld 24582 Wattenbek 24582 Bordesholm 24582 Mühbrook 24589 Dätgen 24589 Nortorf 24589 Ellerdorf 24589 Eisendorf 24589 Borgdorf-Seedorf 24589 Schülp bei Nortorf 24594 Heinkenborstel 24594 Meezen 24594 Jahrsdorf 24594 Grauel 24594 Tappendorf 24594 Rade bei Hohenwestedt 24594 Wapelfeld 24594 Hohenwestedt 24594 Remmels 24594 Nindorf 24594 Mörel 24598 Latendorf 24598 Heidmühlen 24598 Boostedt 24601 Stolpe 24601 Belau 24601 Ruhwinkel 24601 Wankendorf 24610 Trappenkamp 24610 Gönnebek 24613 Wiedenborstel 24613 Aukrug 24616 Brokstedt 24616 Borstel 24616 Hasenkrug 24616 Sarlhusen 24616 Willenscharen 24616 Hardebek 24616 Armstedt 24619 Bornhöved 24619 Rendswühren 24619 Tarbek 24620 Bönebüttel 24622 Gnutz 24623 Großenaspe 24625 Großharrie 24625 Negenharrie 24626 Groß Kummerfeld 24628 Hartenholm 24629 Kisdorf 24631 Langwedel 24632 Lentföhrden 24632 Heidmoor 24634 Arpsdorf 24634 Padenstedt 24635 Daldorf 24635 Rickling 24637 Schillsdorf 24638 Schmalensee 24640 Schmalfeld 24640 Hasenmoor 24641 Stuvenborn 24641 Hüttblek 24641 Sievershütten 24643 Struvenhütten 24644 Timmaspe 24644 Krogaspe 24644 Loop 24646 Warder 24647 Ehndorf 24647 Wasbek 24649 Wiemersdorf 24649 Fuhlendorf 24768 Rendsburg 24782 Rickert 24782 Büdelsdorf 24783 Osterrönfeld 24784 Westerrönfeld 24787 Fockbek 24790 Schülldorf 24790 Schacht-Audorf 24790 Haßmoor 24790 Rade bei Rendsburg 24790 Ostenfeld 24791 Alt Duvenstedt 24793 Brammer 24793 Bargstedt 24793 Oldenhütten 24794 Borgstedt 24794 Neu Duvenstedt 24794 Bünsdorf 24796 Bovenau 24796 Krummwisch 24796 Bredenbek 24797 Hörsten 24797 Breiholz 24799 Königshügel 24799 Friedrichsgraben 24799 Christiansholm 24799 Meggerdorf 24799 Friedrichsholm 24800 Elsdorf-Westermühlen 24802 Emkendorf 24802 Groß Vollstedt 24802 Bokel 24803 Tielen 24803 Erfde 24805 Hamdorf 24805 Prinzenmoor 24806 Bargstall 24806 Sophienhamm 24806 Hohn 24806 Lohe-Föhrden 24808 Jevenstedt 24809 Nübbel 24811 Ahlefeld 24811 Owschlag 24811 Brekendorf 24813 Schülp bei Rendsburg 24814 Sehestedt 24816 Hamweddel 24816 Luhnstedt 24816 Stafstedt 24816 Brinjahe 24817 Tetenhusen 24819 Nienborstel 24819 Haale 24819 Embühren 24819 Todenbüttel 24837 Schleswig 24848 Alt Bennebek 24848 Klein Bennebek 24848 Klein Rheide 24848 Kropp 24850 Hüsby 24850 Lürschau 24850 Schuby 24852 Süderhackstedt 24852 Eggebek 24852 Langstedt 24852 Sollerup 24855 Bollingstedt 24855 Jübek 24857 Fahrdorf 24857 Borgwedel 24860 Uelsby 24860 Klappholz 24860 Böklund 24861 Bergenhusen 24863 Börm 24864 Goltoft 24864 Brodersby 24866 Busdorf 24867 Dannewerk 24869 Dörpstedt 24870 Ellingstedt 24872 Groß Rheide 24873 Havetoft 24875 Havetoftloit 24876 Hollingstedt 24878 Jagel 24878 Lottorf 24879 Idstedt 24879 Neuberend 24881 Nübel 24882 Schaalby 24884 Geltorf 24884 Selk 24885 Sieverstedt 24887 Silberstedt 24888 Steinfeld 24888 Loit 24890 Stolk 24890 Süderfahrenstedt 24891 Schnarup-Thumby 24891 Struxdorf 24893 Taarstedt 24894 Twedt 24894 Tolk 24896 Treia 24897 Ulsnis 24899 Wohlde 24937 Flensburg 24937 Flensborg 24939 Flensburg 24939 Flensborg 24941 Flensburg 24941 Flensborg 24941 Jarplund-Weding 24943 Flensburg 24943 Flensborg 24943 Tastrup 24944 Flensburg 24944 Flensborg 24955 Harrislee 24960 Glücksburg 24960 Munkbrarup 24963 Jerrishoe 24963 Tarp 24966 Sörup 24969 Großenwiehe 24969 Lindewitt 24972 Quern 24972 Steinbergkirche 24972 Steinberg 24975 Ausacker 24975 Maasbüll 24975 Hürup 24975 Husby 24977 Westerholz 24977 Langballig 24977 Grundhof 24977 Ringsberg 24980 Schafflund 24980 Hörup 24980 Wallsbüll 24980 Nordhackstedt 24980 Meyn 24983 Handewitt 24986 Rüde 24986 Satrup 24988 Sankelmark 24988 Oeversee 24989 Dollerup 24991 Großsolt 24991 Freienwill 24992 Janneby 24992 Jörl 24994 Weesby 24994 Jardelund 24994 Osterby 24994 Medelby 24994 Böxlund 24994 Holt 24996 Ahneby 24996 Sterup 24997 Wanderup 24999 Wees 25335 Altenmoor 25335 Elmshorn 25335 Bokholt-Hanredder 25335 Neuendorf bei Elmshorn 25335 Raa-Besenbek 25336 Klein Nordende 25336 Elmshorn 25337 Elmshorn 25337 Seeth-Ekholt 25337 Kölln-Reisiek 25348 Blomesche Wildnis 25348 Engelbrechtsche Wildnis 25348 Glückstadt 25355 Barmstedt 25355 Bullenkuhlen 25355 Heede 25355 Bevern 25355 Lutzhorn 25355 Groß Offenseth-Aspern 25358 Sommerland 25358 Hohenfelde 25358 Horst (Holstein) 25361 Süderau 25361 Elskop 25361 Krempe 25361 Grevenkop 25364 Brande-Hörnerkirchen 25364 Westerhorn 25364 Osterhorn 25364 Bokel 25365 Klein Offenseth-Sparrieshoop 25368 Kiebitzreihe 25370 Seester 25371 Seestermühe 25373 Ellerhoop 25376 Borsfleth 25376 Krempdorf 25377 Kollmar 25379 Herzhorn 25421 Pinneberg 25436 Tornesch 25436 Neuendeich 25436 Uetersen 25436 Heidgraben 25436 Groß Nordende 25436 Moorrege 25451 Quickborn 25462 Rellingen 25469 Halstenbek 25474 Ellerbek 25474 Hasloh 25474 Bönningstedt 25479 Ellerau 25482 Appen 25485 Langeln 25485 Bilsen 25485 Hemdingen 25486 Alveslohe 25488 Holm 25489 Haseldorf 25489 Haselau 25491 Hetlingen 25492 Heist 25494 Borstel-Hohenraden 25495 Kummerfeld 25497 Prisdorf 25499 Tangstedt 25524 Bekmünde 25524 Heiligenstedtenerkamp 25524 Itzehoe 25524 Kollmoor 25524 Oelixdorf 25524 Heiligenstedten 25524 Breitenburg 25541 Brunsbüttel 25548 Störkathen 25548 Wittenbergen 25548 Kellinghusen 25548 Mühlenbarbek 25548 Rosdorf 25548 Auufer 25548 Oeschebüttel 25551 Peissen 25551 Schlotfeld 25551 Lockstedt 25551 Winseldorf 25551 Silzen 25551 Lohbarbek 25551 Hohenlockstedt 25554 Landrecht 25554 Stördorf 25554 Moorhusen 25554 Bekdorf 25554 Dammfleth 25554 Kleve 25554 Nortorf 25554 Wilster 25554 Krummendiek 25554 Neuendorf-Sachsenbande 25554 Neuendorf bei Wilster 25554 Sachsenbande 25557 Seefeld 25557 Hanerau-Hademarschen 25557 Steenfeld 25557 Gokels 25557 Oldenbüttel 25557 Bendorf 25557 Beldorf 25557 Thaden 25560 Aasbüttel 25560 Bokhorst 25560 Agethorst 25560 Kaisborstel 25560 Pöschendorf 25560 Puls 25560 Warringholz 25560 Oldenborstel 25560 Siezbüttel 25560 Hadenfeld 25560 Schenefeld 25563 Wulfsmoor 25563 Hingstheide 25563 Wrist 25563 Quarnstedt 25563 Föhrden-Barl 25566 Lägerdorf 25566 Rethwisch 25569 Hodorf 25569 Kremperheide 25569 Bahrenfleth 25569 Krempermoor 25572 Sankt Margarethen 25572 Ecklak 25572 Kudensee 25572 Aebtissinwisch 25572 Landscheide 25572 Büttel 25573 Beidenfleth 25575 Beringstedt 25576 Brokdorf 25578 Neuenbrook 25578 Dägeling 25579 Fitzbek 25579 Rade 25581 Poyenberg 25581 Hennstedt 25582 Looft 25582 Drage 25582 Kaaks 25582 Hohenaspe 25584 Besdorf 25584 Holstenniendorf 25585 Tackesdorf 25585 Lütjenwestedt 25587 Münsterdorf 25588 Oldendorf 25588 Huje 25588 Mehlbek 25590 Osterstedt 25591 Ottenbüttel 25593 Reher 25593 Christinenthal 25594 Vaale 25594 Nutteln 25594 Vaalermoor 25596 Gribbohm 25596 Bokelrehm 25596 Wacken 25596 Nienbüttel 25597 Breitenberg 25597 Westermoor 25597 Moordiek 25597 Kronsmoor 25597 Moordorf 25599 Wewelsfleth 25693 Sankt Michaelisdonn 25693 Volsemenhusen 25693 Gudendorf 25693 Trennewurth 25704 Nindorf 25704 Elpersbüttel 25704 Nordermeldorf 25704 Wolmersdorf 25704 Meldorf 25704 Epenwöhrden 25704 Bargenstedt 25709 Marne 25709 Marnerdeich 25709 Helse 25709 Kronprinzenkoog 25709 Kaiser-Wilhelm-Koog 25709 Diekhusen-Fahrstedt 25712 Kuden 25712 Hochdonn 25712 Burg (Dithmarschen) 25712 Großenrade 25712 Quickborn 25712 Buchholz 25712 Brickeln 25715 Averlak 25715 Ramhusen 25715 Eddelak 25715 Dingen 25718 Friedrichskoog 25719 Busenwurth 25719 Barlt 25721 Eggstedt 25724 Neufeld 25724 Neufelderkoog 25724 Schmedeswurth 25725 Schafstedt 25725 Bornholt 25727 Frestedt 25727 Süderhastedt 25727 Krumstedt 25729 Windbergen 25746 Ostrohe 25746 Lohe-Rickelshof 25746 Heide 25746 Norderwöhrden 25746 Wesseln 25761 Hedwigenkoog 25761 Oesterdeichstrich 25761 Warwerort 25761 Westerdeichstrich 25761 Büsum 25761 Büsumer Deichhausen 25764 Oesterwurth 25764 Friedrichsgabekoog 25764 Wesselburen 25764 Süderdeich 25764 Schülp 25764 Hillgroven 25764 Norddeich 25764 Wesselburener-Deichhausen 25764 Hellschen-Heringsand-Unterschaar 25764 Wesselburenerkoog 25764 Reinsbüttel 25767 Arkebek 25767 Osterrade 25767 Offenbüttel 25767 Bunsoh 25767 Tensbüttel-Röst 25767 Wennbüttel 25767 Albersdorf 25770 Hemmingstedt 25770 Lieth 25774 Hemme 25774 Lehe 25774 Krempel 25774 Lunden 25774 Karolinenkoog 25774 Groven 25776 Schlichting 25776 Sankt Annen 25776 Rehm-Flehde-Bargen 25779 Kleve 25779 Hennstedt 25779 Hägen 25779 Bergewöhrden 25779 Wiemerstedt 25779 Süderheistedt 25779 Norderheistedt 25779 Glüsing 25779 Fedderingen 25782 Süderdorf 25782 Gaushorn 25782 Westerborstel 25782 Welmbüttel 25782 Hövede 25782 Schalkholz 25782 Tellingstedt 25782 Schrum 25785 Sarzbüttel 25785 Odderade 25785 Nordhastedt 25786 Dellstedt 25788 Hollingstedt 25788 Wallen 25788 Delve 25791 Linden 25791 Barkenholm 25792 Neuenkirchen 25792 Strübbel 25794 Dörpling 25794 Tielenhemme 25794 Pahlen 25795 Stelle-Wittenwurth 25795 Weddingstedt 25797 Wöhrden 25799 Wrohm 25813 Schwesing 25813 Husum 25813 Südermarsch 25813 Simonsberg 25821 Almdorf 25821 Breklum 25821 Reußenköge 25821 Vollstedt 25821 Bredstedt 25821 Struckum 25821 Sönnebüll 25826 Sankt Peter-Ording 25832 Tönning 25832 Kotzenbüll 25836 Welt 25836 Katharinenheerd 25836 Garding 25836 Grothusenkoog 25836 Poppenbüll 25836 Kirchspiel Garding 25836 Osterhever 25836 Vollerwiek 25840 Koldenbüttel 25840 Friedrichstadt 25842 Langenhorn 25842 Bargum 25842 Lütjenholm 25842 Ockholm 25845 Nordstrand 25845 Elisabeth-Sophien-Koog 25849 Pellworm 25850 Bondelum 25850 Behrendorf 25852 Bordelum 25853 Ahrenshöft 25853 Drelsdorf 25853 Bohmstedt 25855 Haselund 25856 Hattstedt 25856 Wobbenbüll 25856 Hattstedtermarsch 25858 Högel 25859 Hooge 25860 Horstedt 25860 Olderup 25860 Arlewatt 25862 Goldebek 25862 Kolkerheide 25862 Goldelund 25862 Joldelund 25863 Langeneß 25864 Löwenstedt 25866 Mildstedt 25868 Norderstapel 25869 Gröde 25870 Norderfriedrichskoog 25870 Oldenswort 25872 Ostenfeld 25872 Wittbek 25873 Oldersbek 25873 Rantrum 25875 Schobüll 25876 Wisch 25876 Süderhöft 25876 Ramstedt 25876 Fresendelf 25876 Schwabstedt 25876 Hude 25878 Drage 25878 Seeth 25879 Süderstapel 25881 Augustenkoog 25881 Westerhever 25881 Tümlauer Koog 25881 Tating 25882 Tetenbüll 25884 Sollwitt 25884 Viöl 25884 Norstedt 25885 Ahrenviölfeld 25885 Ahrenviöl 25885 Immenstedt 25885 Oster-Ohrstedt 25885 Wester-Ohrstedt 25887 Winnert 25889 Witzwort 25889 Uelvesbüll 25899 Galmsbüll 25899 Niebüll 25899 Bosbüll 25899 Dagebüll 25899 Klixbüll 25917 Enge-Sande 25917 Stadum 25917 Tinningstedt 25917 Leck 25917 Sprakebüll 25917 Achtrup 25920 Stedesand 25920 Risum-Lindholm 25923 Humptrup 25923 Braderup 25923 Ellhöft 25923 Süderlügum 25923 Lexgaard 25923 Holm 25923 Uphusum 25924 Rodenäs 25924 Emmelsbüll-Horsbüll 25924 Klanxbüll 25924 Friedrich-Wilhelm-Lübke-Koog 25926 Karlum 25926 Ladelund 25926 Bramstedtlund 25926 Westre 25927 Aventoft 25927 Neukirchen 25938 Dunsum 25938 Midlum 25938 Oevenum 25938 Süderende 25938 Oldsum 25938 Wyk auf Föhr 25938 Alkersum 25938 Wrixum 25938 Borgsum 25938 Nieblum 25938 Witsum 25938 Utersum 25946 Wittdün 25946 Nebel 25946 Norddorf 25980 Rantum 25980 Westerland 25980 Sylt-Ost 25992 List 25996 Wenningstedt 25997 Hörnum 25999 Kampen 26121 Oldenburg (Oldenburg) 26122 Oldenburg (Oldenburg) 26123 Oldenburg (Oldenburg) 26125 Oldenburg (Oldenburg) 26127 Oldenburg (Oldenburg) 26129 Oldenburg (Oldenburg) 26131 Oldenburg (Oldenburg) 26133 Oldenburg (Oldenburg) 26135 Oldenburg (Oldenburg) 26160 Bad Zwischenahn 26169 Friesoythe 26180 Rastede 26188 Edewecht 26197 Großenkneten 26203 Wardenburg 26209 Hatten 26215 Wiefelstede 26219 Bösel 26316 Varel 26340 Zetel 26345 Bockhorn 26349 Jade 26382 Wilhelmshaven 26384 Wilhelmshaven 26386 Wilhelmshaven 26388 Wilhelmshaven 26389 Wilhelmshaven 26409 Wittmund 26419 Schortens 26427 Dunum 26427 Esens 26427 Stedesdorf 26427 Werdum 26427 Neuharlingersiel 26427 Holtgast 26427 Moorweg 26434 Wangerland 26441 Jever 26446 Friedeburg 26452 Sande 26465 Langeoog 26474 Spiekeroog 26486 Wangerooge 26487 Blomberg 26487 Neuschoo 26489 Ochtersum 26506 Norden 26524 Hagermarsch 26524 Hage 26524 Lütetsburg 26524 Halbemond 26524 Berumbur 26529 Wirdum 26529 Marienhafe 26529 Upgant-Schott 26529 Rechtsupweg 26529 Osteel 26529 Leezdorf 26532 Großheide 26548 Norderney 26553 Dornum 26556 Utarp 26556 Westerholt 26556 Nenndorf 26556 Schweindorf 26556 Eversmeer 26571 Juist 26579 Baltrum 26603 Aurich 26605 Aurich 26607 Aurich 26624 Südbrookmerland 26629 Großefehn 26632 Ihlow 26639 Wiesmoor 26655 Westerstede 26670 Uplengen 26676 Barßel 26683 Saterland 26689 Apen 26721 Emden 26723 Emden 26725 Emden 26736 Krummhörn 26757 Borkum 26759 Hinte 26789 Leer (Ostfriesland) 26802 Moormerland 26810 Westoverledingen 26817 Rhauderfehn 26826 Weener 26831 Bunde 26831 Bunderhee 26831 Boen 26831 Wymeer 26831 Dollart 26835 Holtland 26835 Firrel 26835 Hesel 26835 Brinkum 26835 Schwerinsdorf 26835 Neukamperfehn 26842 Ostrhauderfehn 26844 Jemgum 26845 Nortmoor 26847 Detern 26849 Filsum 26871 Papenburg 26892 Wippingen 26892 Kluse 26892 Lehe 26892 Heede 26892 Dörpen 26897 Esterwegen 26897 Breddenberg 26897 Hilkenbrook 26897 Bockhorst 26899 Rhede 26901 Rastdorf 26901 Lorup 26903 Surwold 26904 Börger 26906 Dersum 26907 Walchum 26909 Neubörger 26909 Neulehe 26919 Brake 26931 Elsfleth 26935 Stadland 26936 Stadland 26937 Stadland 26939 Ovelgönne 26954 Nordenham 26969 Butjadingen 27211 Bassum 27232 Sulingen 27239 Twistringen 27243 Kirchseelte 27243 Prinzhöfte 27243 Groß Ippener 27243 Colnrade 27243 Winkelsett 27243 Harpstedt 27243 Beckeln 27243 Dünsen 27245 Kirchdorf 27245 Barenburg 27245 Bahrenborstel 27246 Borstel 27248 Ehrenburg 27249 Mellinghausen 27249 Maasen 27251 Scholen 27251 Neuenkirchen 27252 Schwaförden 27254 Siedenburg 27254 Staffhorst 27257 Affinghausen 27257 Sudwalde 27259 Freistatt 27259 Wehrbleck 27259 Varrel 27283 Verden (Aller) 27299 Langwedel 27305 Engeln 27305 Süstedt 27305 Bruchhausen-Vilsen 27308 Kirchlinteln 27313 Dörverden 27318 Hilgermissen 27318 Hoya 27318 Hoyerhagen 27321 Emtinghausen 27321 Thedinghausen 27321 Morsum 27324 Hämelhausen 27324 Gandesbergen 27324 Hassel (Weser) 27324 Eystrup 27327 Martfeld 27327 Schwarme 27330 Asendorf 27333 Warpe 27333 Bücken 27333 Schweringen 27336 Rethem (Aller) 27336 Frankenfeld 27336 Häuslingen 27337 Blender 27339 Riede 27356 Rotenburg (Wümme) 27367 Hassendorf 27367 Hellwege 27367 Sottrum 27367 Bötersen 27367 Horstedt 27367 Ahausen 27367 Reeßum 27374 Visselhövede 27383 Scheeßel 27386 Hemslingen 27386 Hemsbünde 27386 Kirchwalsede 27386 Bothel 27386 Brockel 27386 Westerwalsede 27389 Stemmen 27389 Lauenbrück 27389 Vahlde 27389 Helvesiek 27389 Fintel 27404 Zeven 27404 Ostereistedt 27404 Elsdorf 27404 Rhade 27404 Seedorf 27404 Heeslingen 27404 Gyhum 27412 Tarmstedt 27412 Westertimke 27412 Kirchtimke 27412 Hepstedt 27412 Breddorf 27412 Bülstedt 27412 Vorwerk 27412 Wilstedt 27419 Lengenbostel 27419 Klein Meckelsen 27419 Sittensen 27419 Groß Meckelsen 27419 Wohnste 27419 Vierden 27419 Kalbe 27419 Hamersen 27419 Tiste 27432 Bremervörde 27432 Alfstedt 27432 Hipstedt 27432 Oerel 27432 Basdahl 27432 Ebersdorf 27442 Gnarrenburg 27446 Deinstedt 27446 Sandbostel 27446 Farven 27446 Selsingen 27446 Anderlingen 27449 Kutenholz 27472 Cuxhaven 27474 Cuxhaven 27476 Cuxhaven 27478 Cuxhaven 27498 Helgoland 27568 Bremerhaven 27570 Bremerhaven 27572 Bremerhaven 27574 Bremerhaven 27576 Bremerhaven 27578 Bremerhaven 27580 Bremerhaven 27607 Langen 27612 Loxstedt 27616 Beverstedt 27616 Frelsdorf 27616 Heerstedt 27616 Hollen 27616 Stubben 27616 Kirchwistedt 27616 Lunestedt 27616 Appeln 27616 Bokel 27619 Schiffdorf 27624 Flögeln 27624 Köhlen 27624 Ringstedt 27624 Drangstedt 27624 Kührstedt 27624 Lintig 27624 Elmlohe 27624 Bad Bederkesa 27628 Sandstedt 27628 Driftsethe 27628 Uthlede 27628 Wulsbüttel 27628 Hagen im Bremischen 27628 Bramstedt 27632 Padingbüttel 27632 Misselwarden 27632 Cappel 27632 Dorum 27632 Mulsum 27632 Midlum 27637 Nordholz 27638 Wremen 27711 Osterholz-Scharmbeck 27721 Ritterhude 27726 Worpswede 27729 Axstedt 27729 Lübberstedt 27729 Holste 27729 Vollersode 27729 Hambergen 27749 Delmenhorst 27751 Delmenhorst 27753 Delmenhorst 27755 Delmenhorst 27777 Ganderkesee 27793 Wildeshausen 27798 Hude (Oldenburg) 27801 Dötlingen 27804 Berne 27809 Lemwerder 28195 Bremen 28197 Bremen 28199 Bremen 28201 Bremen 28203 Bremen 28205 Bremen 28207 Bremen 28209 Bremen 28211 Bremen 28213 Bremen 28215 Bremen 28217 Bremen 28219 Bremen 28237 Bremen 28239 Bremen 28259 Bremen 28277 Bremen 28279 Bremen 28307 Bremen 28309 Bremen 28325 Bremen 28327 Bremen 28329 Bremen 28355 Bremen 28357 Bremen 28359 Bremen 28717 Bremen 28719 Bremen 28755 Bremen 28757 Bremen 28759 Bremen 28777 Bremen 28779 Bremen 28790 Schwanewede 28816 Stuhr 28832 Achim 28844 Weyhe 28857 Syke 28865 Lilienthal 28870 Ottersberg 28876 Oyten 28879 Grasberg 29221 Celle 29223 Celle 29225 Celle 29227 Celle 29229 Celle 29303 Bergen 29308 Winsen (Aller) 29313 Hambühren 29320 Hermannsburg 29323 Wietze 29328 Faßberg 29331 Lachendorf 29336 Nienhagen 29339 Wathlingen 29342 Wienhausen 29345 Unterlüß 29348 Eschede 29348 Scharnhorst 29351 Eldingen 29352 Adelheidsdorf 29353 Ahnsbeck 29355 Beedenbostel 29356 Bröckel 29358 Eicklingen 29359 Habighorst 29361 Höfer 29362 Hohne 29364 Langlingen 29365 Sprakensehl 29367 Steinhorst 29369 Ummern 29378 Wittingen 29379 Wittingen 29386 Obernholz 29386 Dedelstorf 29386 Hankensbüttel 29389 Bad Bodenteich 29392 Wesendorf 29393 Groß Oesingen 29394 Lüder 29396 Schönewörde 29399 Wahrenholz 29410 Salzwedel 29410 Chüden 29413 Wallstawe 29413 Tylsen 29413 Seebenau 29413 Langenapel 29413 Lagendorf 29413 Henningen 29413 Ellenberg 29413 Flecken Diesdorf 29413 Dähre 29413 Bornsen 29413 Bonese 29413 Osterwohle 29413 Neuekrug 29413 Mehmke 29413 Gieseritz 29416 Stappenbeck 29416 Vissum 29416 Valfitz 29416 Steinitz 29416 Siedenlangenbeck 29416 Riebau 29416 Kuhfelde 29416 Klein Gartz 29416 Kerkau 29416 Kaulitz 29416 Jeggeleben 29416 Winterfeld 29416 Wieblitz-Eversdorf 29416 Fleetmark 29416 Chüden 29416 Binde 29416 Bierstedt 29416 Rademin 29416 Püggen 29416 Pretzier 29416 Mechau 29416 Liesten 29416 Altensalzwedel 29416 Benkendorf 29416 Gischau 29439 Lüchow 29451 Dannenberg (Elbe) 29456 Hitzacker 29459 Clenze 29462 Wustrow 29465 Schnega 29468 Bergen (Dumme) 29471 Gartow 29472 Damnatz 29473 Göhrde 29475 Gorleben 29476 Gusborn 29478 Höhbeck 29479 Jameln 29481 Karwitz 29482 Küsten 29484 Langendorf 29485 Lemgow 29487 Luckau 29488 Lübbow 29490 Neu Darchau 29491 Prezelle 29493 Schnackenburg 29494 Trebel 29496 Waddeweitz 29497 Woltersdorf 29499 Zernien 29525 Uelzen 29549 Bad Bevensen 29553 Bienenbüttel 29556 Suderburg 29559 Wrestedt 29562 Suhlendorf 29565 Wriedel 29568 Wieren 29571 Rosche 29574 Ebstorf 29575 Altenmedingen 29576 Barum 29578 Eimke 29579 Emmendorf 29581 Gerdau 29582 Hanstedt I 29584 Himbergen 29585 Jelmstorf 29587 Natendorf 29588 Oetzen 29590 Rätzlingen 29591 Römstedt 29593 Schwienau 29594 Soltendieck 29596 Stadensen 29597 Stoetze 29599 Weste 29614 Soltau 29633 Munster 29640 Schneverdingen 29643 Neuenkirchen 29646 Bispingen 29649 Wietzendorf 29664 Walsrode 29683 Fallingbostel 29690 Buchholz (Aller) 29690 Gilten 29690 Grethem 29690 Lindwedel 29690 Essel 29690 Schwarmstedt 29693 Hodenhagen 29693 Böhme 29693 Eickeloh 29693 Hademstorf 29693 Ahlden (Aller) 29699 Bomlitz 30159 Hannover 30161 Hannover 30163 Hannover 30165 Hannover 30167 Hannover 30169 Hannover 30171 Hannover 30173 Hannover 30175 Hannover 30177 Hannover 30179 Hannover 30419 Hannover 30449 Hannover 30451 Hannover 30453 Hannover 30455 Hannover 30457 Hannover 30459 Hannover 30519 Hannover 30521 Hannover 30539 Hannover 30559 Hannover 30625 Hannover 30627 Hannover 30629 Hannover 30655 Hannover 30657 Hannover 30659 Hannover 30669 Hannover 30823 Garbsen 30826 Garbsen 30827 Garbsen 30851 Langenhagen 30853 Langenhagen 30855 Langenhagen 30880 Laatzen 30890 Barsinghausen 30900 Wedemark 30916 Isernhagen 30926 Seelze 30938 Burgwedel 30952 Ronnenberg 30966 Hemmingen 30974 Wennigsen 30982 Pattensen 30989 Gehrden 31008 Elze 31020 Salzhemmendorf 31028 Gronau (Leine) 31029 Banteln 31032 Betheln 31033 Brüggen 31035 Despetal 31036 Eime 31039 Rheden 31061 Alfeld (Leine) 31073 Delligsen 31079 Westfeld 31079 Sibbesse 31079 Almstedt 31079 Eberholzen 31079 Adenstedt 31084 Freden (Leine) 31085 Everode 31087 Landwehr 31088 Winzenburg 31089 Duingen 31091 Coppengrave 31093 Hoyershausen 31094 Marienhagen 31096 Weenzen 31097 Harbarnsen 31099 Woltershausen 31134 Hildesheim 31135 Hildesheim 31137 Hildesheim 31139 Hildesheim 31141 Hildesheim 31157 Sarstedt 31162 Bad Salzdetfurth 31167 Bockenem 31171 Nordstemmen 31174 Schellerten 31177 Harsum 31180 Giesen 31185 Söhlde 31188 Holle 31191 Algermissen 31195 Neuhof 31195 Lamspringe 31196 Sehlem 31199 Diekholzen 31224 Peine 31226 Peine 31228 Peine 31234 Edemissen 31241 Ilsede 31246 Lahstedt 31249 Hohenhameln 31275 Lehrte 31303 Burgdorf 31311 Uetze 31319 Sehnde 31515 Wunstorf 31535 Neustadt am Rübenberge 31542 Bad Nenndorf 31547 Rehburg-Loccum 31552 Apelern 31552 Rodenberg 31553 Sachsenhagen 31553 Auhagen 31555 Suthfeld 31556 Wölpinghausen 31558 Hagenburg 31559 Haste 31559 Hohnhorst 31582 Nienburg (Weser) 31592 Stolzenau 31595 Steyerberg 31600 Uchte 31603 Diepenau 31604 Raddestorf 31606 Warmsen 31608 Marklohe 31609 Balge 31613 Wietzen 31618 Liebenau 31619 Binnen 31621 Pennigsehl 31622 Heemsen 31623 Drakenburg 31626 Haßbergen 31627 Rohrsen 31628 Landesbergen 31629 Estorf 31632 Husum 31633 Leese 31634 Steimbke 31636 Linsburg 31637 Rodewald 31638 Stöckse 31655 Stadthagen 31675 Bückeburg 31683 Obernkirchen 31688 Nienstädt 31691 Helpsen 31691 Seggebruch 31693 Hespe 31698 Lindhorst 31699 Beckedorf 31700 Heuerßen 31702 Lüdersfeld 31707 Heeßen 31707 Bad Eilsen 31708 Ahnsen 31710 Buchholz 31711 Luhden 31712 Niedernwöhren 31714 Lauenhagen 31715 Meerbeck 31717 Nordsehl 31718 Pollhagen 31719 Wiedensahl 31737 Rinteln 31749 Auetal 31785 Hameln 31787 Hameln 31789 Hameln 31812 Bad Pyrmont 31832 Springe 31840 Hessisch Oldendorf 31848 Bad Münder am Deister 31855 Aerzen 31860 Emmerthal 31863 Coppenbrügge 31867 Lauenau 31867 Pohle 31867 Hülsede 31867 Messenkamp 31868 Ottenstein 32049 Herford 32051 Herford 32052 Herford 32105 Bad Salzuflen 32107 Bad Salzuflen 32108 Bad Salzuflen 32120 Hiddenhausen 32130 Enger 32139 Spenge 32257 Bünde 32278 Kirchlengern 32289 Rödinghausen 32312 Lübbecke 32339 Espelkamp 32351 Stemwede 32361 Preußisch Oldendorf 32369 Rahden 32423 Minden 32425 Minden 32427 Minden 32429 Minden 32457 Porta Westfalica 32469 Petershagen 32479 Hille 32545 Bad Oeynhausen 32547 Bad Oeynhausen 32549 Bad Oeynhausen 32584 Löhne 32602 Vlotho 32609 Hüllhorst 32657 Lemgo 32676 Lügde 32683 Barntrup 32689 Kalletal 32694 Dörentrup 32699 Extertal 32756 Detmold 32758 Detmold 32760 Detmold 32791 Lage 32805 Horn-Bad Meinberg 32816 Schieder-Schwalenberg 32825 Blomberg 32832 Augustdorf 32839 Steinheim 33014 Bad Driburg 33034 Brakel 33039 Nieheim 33098 Paderborn 33100 Paderborn 33102 Paderborn 33104 Paderborn 33106 Paderborn 33129 Delbrück 33142 Büren 33154 Salzkotten 33161 Hövelhof 33165 Lichtenau 33175 Bad Lippspringe 33178 Borchen 33181 Bad Wünnenberg 33184 Altenbeken 33189 Schlangen 33330 Gütersloh 33332 Gütersloh 33334 Gütersloh 33335 Gütersloh 33378 Rheda-Wiedenbrück 33397 Rietberg 33415 Verl 33428 Harsewinkel 33442 Herzebrock-Clarholz 33449 Langenberg 33602 Bielefeld 33604 Bielefeld 33605 Bielefeld 33607 Bielefeld 33609 Bielefeld 33611 Bielefeld 33613 Bielefeld 33615 Bielefeld 33617 Bielefeld 33619 Bielefeld 33647 Bielefeld 33649 Bielefeld 33659 Bielefeld 33689 Bielefeld 33699 Bielefeld 33719 Bielefeld 33729 Bielefeld 33739 Bielefeld 33758 Schloß Holte-Stukenbrock 33775 Versmold 33790 Halle 33803 Steinhagen 33813 Oerlinghausen 33818 Leopoldshöhe 33824 Werther 33829 Borgholzhausen 34117 Kassel 34119 Kassel 34121 Kassel 34123 Kassel 34125 Kassel 34127 Kassel 34128 Kassel 34130 Kassel 34131 Kassel 34132 Kassel 34134 Kassel 34212 Melsungen 34225 Baunatal 34233 Fuldatal 34246 Vellmar 34253 Lohfelden 34260 Kaufungen 34266 Niestetal 34270 Schauenburg 34277 Fuldabrück 34281 Gudensberg 34286 Spangenberg 34289 Zierenberg 34292 Ahnatal 34295 Edermünde 34298 Helsa 34302 Guxhagen 34305 Niedenstein 34308 Bad Emstal 34311 Naumburg 34314 Espenau 34317 Habichtswald 34320 Söhrewald 34323 Malsfeld 34326 Morschen 34327 Körle 34329 Nieste 34346 Hannoversch Münden 34355 Staufenberg 34359 Reinhardshagen 34369 Hofgeismar 34376 Immenhausen 34379 Calden 34385 Bad Karlshafen 34388 Trendelburg 34393 Grebenstein 34396 Liebenau 34399 Oberweser 34414 Warburg 34431 Marsberg 34434 Borgentreich 34439 Willebadessen 34454 Bad Arolsen 34466 Wolfhagen 34471 Volkmarsen 34474 Diemelstadt 34477 Twistetal 34479 Breuna 34497 Korbach 34508 Willingen (Upland) 34513 Waldeck 34516 Vöhl 34519 Diemelsee 34537 Bad Wildungen 34549 Edertal 34560 Fritzlar 34576 Homberg (Efze) 34582 Borken 34587 Felsberg 34590 Wabern 34593 Knüllwald 34596 Bad Zwesten 34599 Neuental 34613 Schwalmstadt 34621 Frielendorf 34626 Neukirchen 34628 Willingshausen 34630 Gilserberg 34632 Jesberg 34633 Ottrau 34637 Schrecksbach 34639 Schwarzenborn 35037 Marburg 35039 Marburg 35041 Marburg 35043 Marburg 35066 Frankenberg (Eder) 35075 Gladenbach 35080 Bad Endbach 35083 Wetter 35085 Ebsdorfergrund 35088 Battenberg (Eder) 35091 Cölbe 35094 Lahntal 35096 Weimar 35099 Burgwald 35102 Lohra 35104 Lichtenfels 35108 Allendorf (Eder) 35110 Frankenau 35112 Fronhausen 35114 Haina (Kloster) 35116 Hatzfeld (Eder) 35117 Münchhausen 35119 Rosenthal 35216 Biedenkopf 35232 Dautphetal 35236 Breidenbach 35239 Steffenberg 35260 Stadtallendorf 35274 Kirchhain 35279 Neustadt (Hessen) 35282 Rauschenberg 35285 Gemünden (Wohra) 35287 Amöneburg 35288 Wohratal 35305 Grünberg 35315 Homberg (Ohm) 35321 Laubach 35325 Mücke 35327 Ulrichstein 35329 Gemünden (Felda) 35390 Gießen 35392 Gießen 35394 Gießen 35396 Gießen 35398 Gießen 35410 Hungen 35415 Pohlheim 35418 Buseck 35423 Lich 35428 Langgöns 35435 Wettenberg 35440 Linden 35444 Biebertal 35447 Reiskirchen 35452 Heuchelheim 35457 Lollar 35460 Staufenberg 35463 Fern
PLZ Ort (German Zip-Codes and City names)
2016-03-02T17:04:25.000Z
get all tags not containing a given string
<tagname((.|\n)(?!string))*?<\/tagname>
<?xml version="1.0" encoding="utf-8"?> <OdfBody Source="IDS" DocumentCode="EQ0000000" Serial="869" Time="104139151" CompetitionCode="PG2016" Date="2016-09-02" FeedFlag="P" LogicalDate="2016-09-02" DocumentType="DT_PARTIC" Version="3" > <Competition Code="PG2016"> <Participant Parent="1057257" MainFunctionId="AA01" OlympicSolidarity="N" Organisation="AUT" Code="1057257" BirthDate="1977-12-15" Nationality="AUT" Status="ACTIVE" TVName="Michael Martin KNAUDER" GivenName="Michael Martin" Gender="M" TVInitialName="M.M. KNAUDER" FamilyName="KNAUDER" PrintName="KNAUDER Michael Martin" PrintInitialName="KNAUDER MM" Current="true"> <Discipline IFId="10081843" Code="EQ"> <RegisteredEvent Event="001" Class="GIA" Gender="X"> <EventEntry Value="H014452" Type="ENTRY" Code="HORSE_ID"/> <EventEntry Value="P 7" Type="ENTRY" Code="PROFILE"/> </RegisteredEvent> <RegisteredEvent Event="401" Class="GIA" Gender="X"> <EventEntry Value="H014452" Type="ENTRY" Code="HORSE"/> <EventEntry Value="P 7" Type="ENTRY" Code="PROFILE"/> </RegisteredEvent> <RegisteredEvent Event="420" Class="GIA" Gender="X"> <EventEntry Value="H014452" Type="ENTRY" Code="HORSE_ID"/> <EventEntry Value="P 7" Type="ENTRY" Code="PROFILE"/> </RegisteredEvent> </Discipline> </Participant> <Participant Parent="1063065" MainFunctionId="TM_OFFIC" OlympicSolidarity="N" Organisation="CZE" Code="1063065" BirthDate="1974-10-28" Nationality="CZE" Status="ACTIVE" TVName="Lenka MATOSKOVA" GivenName="Lenka" Gender="W" TVInitialName="L. MATOSKOVA" FamilyName="MATOSKOVA" PrintName="MATOSKOVA Lenka" PrintInitialName="MATOSKOVA L" Current="true"> <Discipline Code="EQ"/> </Participant> <Participant Parent="1096278" MainFunctionId="AA01" OlympicSolidarity="N" Organisation="AUT" Code="1096278" BirthDate="1995-09-24" Nationality="AUT" Status="ACTIVE" TVName="Julia SCIANCALEPORE" GivenName="Julia" Gender="W" TVInitialName="J. SCIANCALEPORE" FamilyName="SCIANCALEPORE" PrintName="SCIANCALEPORE Julia" PrintInitialName="SCIANCALEPORE J" Current="true"> <Discipline IFId="10108391" Code="EQ"> <RegisteredEvent Event="001" Class="GIA" Gender="X"> <EventEntry Value="H014366" Type="ENTRY" Code="HORSE_ID"/> <EventEntry Value="P 12a" Type="ENTRY" Code="PROFILE"/> </RegisteredEvent> <RegisteredEvent Event="401" Class="GIA" Gender="X"> <EventEntry Value="H014366" Type="ENTRY" Code="HORSE"/> <EventEntry Value="P 12a" Type="ENTRY" Code="PROFILE"/> </RegisteredEvent> <RegisteredEvent Event="420" Class="GIA" Gender="X"> <EventEntry Value="H014366" Type="ENTRY" Code="HORSE_ID"/> <EventEntry Value="P 12a" Type="ENTRY" Code="PROFILE"/> </RegisteredEvent> </Discipline> </Participant> </Competition> </OdfBody>
tag not containing
2016-09-06T12:00:12.000Z
Check the correct order of the brackets (),<>,{},[] fix slashes
^([^()[\]{}<>]*)(\(((?1)(?2)*)*\)|\[(?3)*\]|<(?3)*>|{(?3)*})(?1)$
sd{f(tagsad<fas>df(tag(a)sd)sdfa(sdf)s[a(sd)]f)as}df
The correct order of the brackets 2
2016-06-14T11:03:25.000Z
(?:^|\s)(?'arg1'[a-z]+)=(?P=arg1)
abc=abc abcd=abc qwe=ewq qwe=qwe
Match a string that is equal to a string before a '='
2015-08-05T16:24:29.000Z
Parse just the filename from ls -a output on Linux.
\S+\s+\S+\s+\S+\s+\S+\s+\S+\s+\S+\s+\S+\s+\S+\s+(.*)
drwxrwxr-x 2 bhannan bhannan 4096 Jun 2 11:27 HelloWorld.xml
ls -a Linux Output - Parse Filename
2016-06-03T14:51:09.000Z
teste para validação de números de telefone
^(\d{2})(\s?)(9?\d{4})(-?)\d{4}
11 8765-1234 11 98765-1234 118765-1234 11 87651234 11987651234 119876512345 = muitos números não validaria 11876541234 = muitos números sem o 9 também não validaria.
somente telefone
2016-03-16T20:56:04.000Z
^(\w+)@(\w+)\.([a-z]{2,8})([a-z]{2,8})?$
email validation
2020-07-04T17:04:39.000Z
soundclouds url in <a>
<a href="http.*soundcloud.com.*sets\/(.*).*<\/a>
the following URL will be found in a &lt;A&gt;:<br> <em><a href="https://www.youtube.com/watch?t=61&amp;v=JozAmXo2bDE" rel="nofollow">https://www.youtube.com/watch?t=61&amp;v=JozAmXo2bDE</a> <br> <a href="https://soundcloud.com/buzzdeny/sets/deutsch-er-hiphop-rap" rel="nofollow">https://soundcloud.com/buzzdeny/sets/deutsch-er-hiphop-rap</a> <a href="https://www.youtube.com/watch?v=VH2QAMMSL40" rel="nofollow">https://www.youtube.com/watch?v=VH2QAMMSL40</a> <br> <a href="http://www.youtube.com/embed/NLqAF9hrVbY" rel="nofollow">http://www.youtube.com/embed/NLqAF9hrVbY</a> <br> <a href="http://youtu.be/NLqAF9hrVbY" rel="nofollow">http://youtu.be/NLqAF9hrVbY</a> </em><br> <a href="http://www.youtube.com/sandalsResorts#p/c/54B8C800269D7C1B/0/FJUvudQsKCM" rel="nofollow">http://www.youtube.com/sandalsResorts#p/c/54B8C800269D7C1B/0/FJUvudQsKCM</a> </p> <a href="/uploads/files/1438381231924-humanistische-friedenspartei.mp3">Humanistische - Friedenspartei.mp3</a> <p>nice... <a href="/uploads/files/1438418374790-drumloop053_ambnt_160_x_sc5.wav">DRUMLOOP053_AMBNT_160_X_SC5.wav</a></p> <a href="/uploads/files/1438418374790-drumloop053_ambnt_160_x_sc5.wav">DRUMLOOP053_AMBNT_160_X_SC5.wav</a> <p>infos:<br> <a href="https://github.com/ogerly/nodebb-plugin-youtube-lite/blob/master/library.js" rel="nofollow">https://github.com/ogerly/nodebb-plugin-youtube-lite/blob/master/library.js</a></p> <p><a href="https://github.com/ogerly/nodebb-plugin-youtube-lite" rel="nofollow">https://github.com/ogerly/nodebb-plugin-youtube-lite</a></p> </div>
soundclouds url in <a>
2015-08-01T13:57:24.000Z
Matches strings that are formatted as arrays. The following will match: - `[ 3.4, -600, foo ]` - `["foo","bar"]` - `[ bar, 1600 ]` - `[ foo ]` - `[ "foo bar" ] But these won’t match: - `3.4, -600, foo` - `[ "foo" "bar" ]` - `[ foo bar ]`
^\[ *(((['"][-\w. ]+['"]|[-\w.]+), *)*)(['"][-\w. ]+['"]|[-\w.]+) *]$
[ 12, kb, 67 ]
Array-like string
2017-06-27T06:02:05.000Z
<tr[^>]*>[^<]*<td[^>]*>(?<No>[^<]*)<[^>]*>[^>]*>(?<ID_dist>[^<]*)<\/td>[^>]*>(?<Jmeno>[^<]*)<\/td>[^>]*>(?<Tel_Home>[^<]*)<\/td>[^>]*>(?<Tel_Buss>[^<]*)<\/td>[^>]*>(?<Tel_mob>[^<]*)<\/td>[^>]*>(?<Country>[^<]*)<\/td>[^>]*><a[^>]*>(?<Email>[^<]*)[^<]*<\/a>[^<]*<\/td>[^>]*>(?<Levels>[^<]*)<\/td>[^>]*>(?<Pozice>[^<]*)<\/td>[^>]*>(?<Sponzor_ID>[^<]*)<\/td>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>PBC - Distributors to be Renewed List</title> <meta name="description" content="Lifestyles PBC is an on-line tool to help our Distributors manage their business and achieve their goals." /> <meta name="keywords" content="Lifestyles, Lifestyles International, Personal Business Center, PBC"/> <link href="css/en.css" rel="stylesheet" type="text/css" /> </head> <body bgcolor="#EAF4D1" leftmargin="0" topmargin="3" marginwidth="0" marginheight="0"> <table border="0" align="center" cellpadding="1" cellspacing="1" bgcolor="#999999"> <tr> <td height="33" colspan="11" align="center" bgcolor="#FFFFFF"><h2 style="margin: 10px">Distributors to be Renewed List</h2> <p style="margin: 10px">Month: Nov. 2017</p></td> </tr> <tr> <td height="27" align="center" bgcolor="#CCCCCC"><strong>No.</strong></td> <td height="27" align="center" bgcolor="#CCCCCC"><strong>ID</strong></td> <td height="27" align="center" bgcolor="#CCCCCC"><strong>Name</strong></td> <td align="center" bgcolor="#CCCCCC"><strong>Home Phone</strong></td> <td align="center" bgcolor="#CCCCCC"><strong>Business Phone</strong></td> <td align="center" bgcolor="#CCCCCC"><strong>Cell Phone</strong></td> <td align="center" bgcolor="#CCCCCC"><strong>Country</strong></td> <td align="center" bgcolor="#CCCCCC"><strong>Email</strong></td> <td align="center" bgcolor="#CCCCCC"><strong>Levels</strong></td> <td align="center" bgcolor="#CCCCCC"><strong>Rank</strong></td> <td align="center" bgcolor="#CCCCCC"><strong>Sponsor</strong></td> </tr> <tr> <td height="27" align="center" bgcolor="#FFFFFF">1</td> <td height="27" align="center" bgcolor="#FFFFFF">98000204732</td> <td height="27" align="center" bgcolor="#FFFFFF">Pavel Kaleta</td> <td align="center" bgcolor="#FFFFFF">420 773512280</td> <td align="center" bgcolor="#FFFFFF"></td> <td align="center" bgcolor="#FFFFFF"></td> <td align="center" bgcolor="#FFFFFF">Czech Republic</td> <td align="center" bgcolor="#FFFFFF"><a href="mailto:"></a></td> <td align="center" bgcolor="#FFFFFF">19</td> <td align="center" bgcolor="#FFFFFF">Distributor</td> <td align="center" bgcolor="#FFFFFF">80011630542</td> </tr> <tr> <td height="27" align="center" bgcolor="#FFFFFF">2</td> <td height="27" align="center" bgcolor="#FFFFFF">98000229140</td> <td height="27" align="center" bgcolor="#FFFFFF">Ivana Bilkova</td> <td align="center" bgcolor="#FFFFFF">420 605934970</td> <td align="center" bgcolor="#FFFFFF"></td> <td align="center" bgcolor="#FFFFFF"></td> <td align="center" bgcolor="#FFFFFF">Czech Republic</td> <td align="center" bgcolor="#FFFFFF"><a href="mailto:[email protected]">[email protected]</a></td> <td align="center" bgcolor="#FFFFFF">20</td> <td align="center" bgcolor="#FFFFFF">Distributor</td> <td align="center" bgcolor="#FFFFFF">98000142059</td> </tr> <tr> <td height="27" align="center" bgcolor="#FFFFFF">3</td> <td height="27" align="center" bgcolor="#FFFFFF">98000229289</td> <td height="27" align="center" bgcolor="#FFFFFF">Martina Vitkovska</td> <td align="center" bgcolor="#FFFFFF">420 606629784</td> <td align="center" bgcolor="#FFFFFF"></td> <td align="center" bgcolor="#FFFFFF"></td> <td align="center" bgcolor="#FFFFFF">Czech Republic</td> <td align="center" bgcolor="#FFFFFF"><a href="mailto:[email protected]">[email protected]</a></td> <td align="center" bgcolor="#FFFFFF">18</td> <td align="center" bgcolor="#FFFFFF">Distributor</td> <td align="center" bgcolor="#FFFFFF">13980242</td> </tr> <tr> <td height="27" align="center" bgcolor="#FFFFFF">4</td> <td height="27" align="center" bgcolor="#FFFFFF">98000253035</td> <td height="27" align="center" bgcolor="#FFFFFF">Lenka Lovetinska</td> <td align="center" bgcolor="#FFFFFF">420 60598685</td> <td align="center" bgcolor="#FFFFFF">420 567223836</td> <td align="center" bgcolor="#FFFFFF"></td> <td align="center" bgcolor="#FFFFFF">Czech Republic</td> <td align="center" bgcolor="#FFFFFF"><a href="mailto:[email protected]">[email protected]</a></td> <td align="center" bgcolor="#FFFFFF">20</td> <td align="center" bgcolor="#FFFFFF">Distributor</td> <td align="center" bgcolor="#FFFFFF">98000142059</td> </tr> <tr> <td height="27" align="center" bgcolor="#FFFFFF">5</td> <td height="27" align="center" bgcolor="#FFFFFF">98000253463</td> <td height="27" align="center" bgcolor="#FFFFFF">Filip Korda</td> <td align="center" bgcolor="#FFFFFF">421 902483141</td> <td align="center" bgcolor="#FFFFFF">421 948186144</td> <td align="center" bgcolor="#FFFFFF"></td> <td align="center" bgcolor="#FFFFFF">Slovak Republic</td> <td align="center" bgcolor="#FFFFFF"><a href="mailto:[email protected]">[email protected]</a></td> <td align="center" bgcolor="#FFFFFF">20</td> <td align="center" bgcolor="#FFFFFF">Distributor</td> <td align="center" bgcolor="#FFFFFF">80011633242</td> </tr> <tr> <td height="27" align="center" bgcolor="#FFFFFF">6</td> <td height="27" align="center" bgcolor="#FFFFFF">CZ-03-04277</td> <td height="27" align="center" bgcolor="#FFFFFF">Olga Kostomarova</td> <td align="center" bgcolor="#FFFFFF">420 603160599</td> <td align="center" bgcolor="#FFFFFF"></td> <td align="center" bgcolor="#FFFFFF"></td> <td align="center" bgcolor="#FFFFFF">Czech Republic</td> <td align="center" bgcolor="#FFFFFF"><a href="mailto:"></a></td> <td align="center" bgcolor="#FFFFFF">19</td> <td align="center" bgcolor="#FFFFFF">Distributor</td> <td align="center" bgcolor="#FFFFFF">80011630542</td> </tr> </table> </body> </html> <script>window.focus()</script>
PBC - Distributors to be Renewed List
2017-11-01T12:37:31.000Z